Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- VeNETT
- Optimization enabled
- true
- Compiler version
- v0.6.12+commit.27d51765
- Optimization runs
- 9999
- EVM Version
- default
- Verified at
- 2022-11-30T14:51:35.076863Z
Contract source code
// File: contracts/interfaces/IVeERC20.sol pragma solidity ^0.6.12; /// @title Vote Escrow ERC20 Token Interface /// @notice Interface of a ERC20 token used for vote escrow and boosted farm. Notice that transfers and /// allowances are disabled interface IVeERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: contracts/VeERC20.sol pragma solidity ^0.6.12; /// @title VeERC20 /// @notice Modified version of ERC20 where transfers and allowances are disabled. /// @dev Only minting and burning are allowed. The hook `_beforeTokenOperation` and /// `_afterTokenOperation` methods are called before and after minting/burning respectively. contract VeERC20 is Context, IVeERC20 { mapping(address => uint256) private _balances; uint256 private _totalSupply; string private _name; string private _symbol; /// @dev Emitted when `value` tokens are burned and minted event Burn(address indexed account, uint256 value); event Mint(address indexed beneficiary, uint256 value); /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public pure virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenOperation(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Mint(account, amount); _afterTokenOperation(account, _balances[account]); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenOperation(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Burn(account, amount); _afterTokenOperation(account, _balances[account]); } /** * @dev Hook that is called before any minting and burning. * @param from the account transferring tokens * @param to the account receiving tokens * @param amount the amount being minted or burned */ function _beforeTokenOperation( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any minting and burning. * @param account the account being affected * @param newBalance the new balance of `account` after minting/burning */ function _afterTokenOperation(address account, uint256 newBalance) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/VeNETT.sol pragma solidity ^0.6.12; interface IBoostedNETTFarm { function updateFactor(address, uint256) external; } /// @title Vote Escrow NETT - veNETT /// @notice Infinite supply, used to receive extra farming yields and voting power contract VeNETT is VeERC20("VeNETT", "veNETT"), Ownable { /// @notice the BoostedNETTFarm contract IBoostedNETTFarm public boostedNETTFarm; event UpdateBoostedNETTFarm(address indexed user, address boostedNETTFarm); /// @dev Creates `_amount` token to `_to`. Must only be called by the owner (VeNETTStaking) /// @param _to The address that will receive the mint /// @param _amount The amount to be minted function mint(address _to, uint256 _amount) external onlyOwner { _mint(_to, _amount); } /// @dev Destroys `_amount` tokens from `_from`. Callable only by the owner (VeNETTStaking) /// @param _from The address that will burn tokens /// @param _amount The amount to be burned function burnFrom(address _from, uint256 _amount) external onlyOwner { _burn(_from, _amount); } /// @dev Sets the address of the BoostedNETTFarm contract this updates /// @param _boostedNETTFarm the address of BoostedFarm function setBoostedNETTFarm(address _boostedNETTFarm) external onlyOwner { // We allow 0 address here if we want to disable the callback operations boostedNETTFarm = IBoostedNETTFarm(_boostedNETTFarm); emit UpdateBoostedNETTFarm(_msgSender(), _boostedNETTFarm); } function _afterTokenOperation(address _account, uint256 _newBalance) internal override { if (address(boostedNETTFarm) != address(0)) { boostedNETTFarm.updateFactor(_account, _newBalance); } } function renounceOwnership() public override onlyOwner { revert("VeNETT: Cannot renounce, can only transfer ownership"); } }
Contract ABI
[{"type":"event","name":"Burn","inputs":[{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Mint","inputs":[{"type":"address","name":"beneficiary","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"UpdateBoostedNETTFarm","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"address","name":"boostedNETTFarm","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IBoostedNETTFarm"}],"name":"boostedNETTFarm","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"_from","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBoostedNETTFarm","inputs":[{"type":"address","name":"_boostedNETTFarm","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
Contract Creation Code
0x608060405234801561001057600080fd5b506040518060400160405280600681526020016515995391551560d21b815250604051806040016040528060068152602001651d995391551560d21b81525081600290805190602001906100659291906100e3565b5080516100799060039060208401906100e3565b505050600061008c6100df60201b60201c565b600480546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610176565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061012457805160ff1916838001178555610151565b82800160010185558215610151579182015b82811115610151578251825591602001919060010190610136565b5061015d929150610161565b5090565b5b8082111561015d5760008155600101610162565b610e1c806101856000396000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c8063715018a61161008157806395d89b411161005b57806395d89b4114610276578063ba8141101461027e578063f2fde38b146102b1576100d4565b8063715018a61461022d57806379cc6790146102355780638da5cb5b1461026e576100d4565b8063313ce567116100b2578063313ce567146101a157806340c10f19146101bf57806370a08231146101fa576100d4565b806302142dc0146100d957806306fdde031461010a57806318160ddd14610187575b600080fd5b6100e16102e4565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610112610300565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014c578181015183820152602001610134565b50505050905090810190601f1680156101795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61018f6103b1565b60408051918252519081900360200190f35b6101a96103b7565b6040805160ff9092168252519081900360200190f35b6101f8600480360360408110156101d557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356103bc565b005b61018f6004803603602081101561021057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610472565b6101f861049a565b6101f86004803603604081101561024b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610593565b6100e1610645565b610112610661565b6101f86004803603602081101561029457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166106e0565b6101f8600480360360208110156102c757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610836565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b60028054604080516020601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60015490565b601290565b6103c46109d8565b73ffffffffffffffffffffffffffffffffffffffff166103e2610645565b73ffffffffffffffffffffffffffffffffffffffff161461046457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61046e82826109dc565b5050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6104a26109d8565b73ffffffffffffffffffffffffffffffffffffffff166104c0610645565b73ffffffffffffffffffffffffffffffffffffffff161461054257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180610db36034913960400191505060405180910390fd5b61059b6109d8565b73ffffffffffffffffffffffffffffffffffffffff166105b9610645565b73ffffffffffffffffffffffffffffffffffffffff161461063b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61046e8282610b01565b60045473ffffffffffffffffffffffffffffffffffffffff1690565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103a75780601f1061037c576101008083540402835291602001916103a7565b6106e86109d8565b73ffffffffffffffffffffffffffffffffffffffff16610706610645565b73ffffffffffffffffffffffffffffffffffffffff161461078857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790556107d06109d8565b73ffffffffffffffffffffffffffffffffffffffff167fce40babacdd450b0613b3614b3530c8e876623f1668aa0f560e2ea22d8ce68c882604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a250565b61083e6109d8565b73ffffffffffffffffffffffffffffffffffffffff1661085c610645565b73ffffffffffffffffffffffffffffffffffffffff16146108de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661094a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180610d6c6026913960400191505060405180910390fd5b60045460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff8216610a5e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610a6a60008383610c8f565b600180548201905573ffffffffffffffffffffffffffffffffffffffff821660008181526020818152604091829020805485019055815184815291517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859281900390910190a273ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205461046e908390610c94565b73ffffffffffffffffffffffffffffffffffffffff8216610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610d926021913960400191505060405180910390fd5b610b7982600083610c8f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610d4a6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8316600081815260208181526040918290208585039055600180548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a273ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610c8f908490610c94565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff161561046e57600554604080517f4f00a93e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301526024820185905291519190921691634f00a93e91604480830192600092919082900301818387803b158015610d2d57600080fd5b505af1158015610d41573d6000803e3d6000fd5b50505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737356654e4554543a2043616e6e6f742072656e6f756e63652c2063616e206f6e6c79207472616e73666572206f776e657273686970a2646970667358221220417bd7b0543927005d14c774bd3ca54e14a4ecdbfba7c4856887bc1abd06fb9e64736f6c634300060c0033
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106100d45760003560e01c8063715018a61161008157806395d89b411161005b57806395d89b4114610276578063ba8141101461027e578063f2fde38b146102b1576100d4565b8063715018a61461022d57806379cc6790146102355780638da5cb5b1461026e576100d4565b8063313ce567116100b2578063313ce567146101a157806340c10f19146101bf57806370a08231146101fa576100d4565b806302142dc0146100d957806306fdde031461010a57806318160ddd14610187575b600080fd5b6100e16102e4565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610112610300565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014c578181015183820152602001610134565b50505050905090810190601f1680156101795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61018f6103b1565b60408051918252519081900360200190f35b6101a96103b7565b6040805160ff9092168252519081900360200190f35b6101f8600480360360408110156101d557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356103bc565b005b61018f6004803603602081101561021057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610472565b6101f861049a565b6101f86004803603604081101561024b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610593565b6100e1610645565b610112610661565b6101f86004803603602081101561029457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166106e0565b6101f8600480360360208110156102c757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610836565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b60028054604080516020601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60015490565b601290565b6103c46109d8565b73ffffffffffffffffffffffffffffffffffffffff166103e2610645565b73ffffffffffffffffffffffffffffffffffffffff161461046457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61046e82826109dc565b5050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6104a26109d8565b73ffffffffffffffffffffffffffffffffffffffff166104c0610645565b73ffffffffffffffffffffffffffffffffffffffff161461054257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180610db36034913960400191505060405180910390fd5b61059b6109d8565b73ffffffffffffffffffffffffffffffffffffffff166105b9610645565b73ffffffffffffffffffffffffffffffffffffffff161461063b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61046e8282610b01565b60045473ffffffffffffffffffffffffffffffffffffffff1690565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103a75780601f1061037c576101008083540402835291602001916103a7565b6106e86109d8565b73ffffffffffffffffffffffffffffffffffffffff16610706610645565b73ffffffffffffffffffffffffffffffffffffffff161461078857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790556107d06109d8565b73ffffffffffffffffffffffffffffffffffffffff167fce40babacdd450b0613b3614b3530c8e876623f1668aa0f560e2ea22d8ce68c882604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a250565b61083e6109d8565b73ffffffffffffffffffffffffffffffffffffffff1661085c610645565b73ffffffffffffffffffffffffffffffffffffffff16146108de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661094a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180610d6c6026913960400191505060405180910390fd5b60045460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff8216610a5e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610a6a60008383610c8f565b600180548201905573ffffffffffffffffffffffffffffffffffffffff821660008181526020818152604091829020805485019055815184815291517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859281900390910190a273ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205461046e908390610c94565b73ffffffffffffffffffffffffffffffffffffffff8216610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610d926021913960400191505060405180910390fd5b610b7982600083610c8f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610d4a6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8316600081815260208181526040918290208585039055600180548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a273ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610c8f908490610c94565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff161561046e57600554604080517f4f00a93e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301526024820185905291519190921691634f00a93e91604480830192600092919082900301818387803b158015610d2d57600080fd5b505af1158015610d41573d6000803e3d6000fd5b50505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737356654e4554543a2043616e6e6f742072656e6f756e63652c2063616e206f6e6c79207472616e73666572206f776e657273686970a2646970667358221220417bd7b0543927005d14c774bd3ca54e14a4ecdbfba7c4856887bc1abd06fb9e64736f6c634300060c0033