Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 55 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21249168 | 2 hrs ago | IN | 0 ETH | 0.0005666 | ||||
Approve | 21248568 | 4 hrs ago | IN | 0 ETH | 0.00052307 | ||||
Approve | 21248288 | 5 hrs ago | IN | 0 ETH | 0.0005112 | ||||
Approve | 21247621 | 8 hrs ago | IN | 0 ETH | 0.00068202 | ||||
Approve | 21246182 | 12 hrs ago | IN | 0 ETH | 0.00103467 | ||||
Approve | 21246086 | 13 hrs ago | IN | 0 ETH | 0.00105969 | ||||
Approve | 21245631 | 14 hrs ago | IN | 0 ETH | 0.00053496 | ||||
Approve | 21245573 | 14 hrs ago | IN | 0 ETH | 0.00056522 | ||||
Approve | 21245562 | 14 hrs ago | IN | 0 ETH | 0.00056035 | ||||
Approve | 21245394 | 15 hrs ago | IN | 0 ETH | 0.00072114 | ||||
Approve | 21245300 | 15 hrs ago | IN | 0 ETH | 0.00074043 | ||||
Approve | 21245262 | 15 hrs ago | IN | 0 ETH | 0.0008752 | ||||
Approve | 21245255 | 15 hrs ago | IN | 0 ETH | 0.00061323 | ||||
Approve | 21245252 | 16 hrs ago | IN | 0 ETH | 0.00066262 | ||||
Approve | 21245246 | 16 hrs ago | IN | 0 ETH | 0.00068148 | ||||
Approve | 21245202 | 16 hrs ago | IN | 0 ETH | 0.00075607 | ||||
Approve | 21245191 | 16 hrs ago | IN | 0 ETH | 0.00089022 | ||||
Approve | 21245160 | 16 hrs ago | IN | 0 ETH | 0.00085595 | ||||
Approve | 21245160 | 16 hrs ago | IN | 0 ETH | 0.00168292 | ||||
Approve | 21245150 | 16 hrs ago | IN | 0 ETH | 0.00104873 | ||||
Approve | 21245136 | 16 hrs ago | IN | 0 ETH | 0.00102909 | ||||
Approve | 21245134 | 16 hrs ago | IN | 0 ETH | 0.00094363 | ||||
Approve | 21245094 | 16 hrs ago | IN | 0 ETH | 0.00109617 | ||||
Approve | 21245056 | 16 hrs ago | IN | 0 ETH | 0.00070869 | ||||
Approve | 21245055 | 16 hrs ago | IN | 0 ETH | 0.0015572 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MACA
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-07 */ /* __ __ _ ________ | \/ | /\ | |/ / ____| | \ / | / \ | ' /| |__ | |\/| | / /\ \ | < | __| | | | |/ ____ \| . \| |____ |_| |_/_/__ \_\_|\_\______| _____ _____ /\ | \/ | ____| __ \|_ _/ ____| /\ / \ | \ / | |__ | |__) | | || | / \ / /\ \ | |\/| | __| | _ / | || | / /\ \ / ____ \| | | | |____| | \ \ _| || |____ / ____ \ /_/____\_\_| _|_|______|_| \_\_____\_____/_/ \_\ / ____| | | | \/ | | | | | | | \ / | | | | | | | |\/| | | |____| |__| | | | | \_____|\____/|_| |_| _____ _ _ /\ / ____| /\ |_ _| \ | | / \ | | __ / \ | | | \| | / /\ \| | |_ | / /\ \ | | | . ` | / ____ \ |__| |/ ____ \ _| |_| |\ | /_/ \_\_____/_/ \_\_____|_| \_| */ // Sources flattened with hardhat v2.22.15 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/Context.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/Ownable.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/IERC20.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/ERC20.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 view virtual override 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 See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @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"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @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"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File MACA.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /* __ __ _ ________ | \/ | /\ | |/ / ____| | \ / | / \ | ' /| |__ | |\/| | / /\ \ | < | __| | | | |/ ____ \| . \| |____ |_| |_/_/__ \_\_|\_\______| _____ _____ /\ | \/ | ____| __ \|_ _/ ____| /\ / \ | \ / | |__ | |__) | | || | / \ / /\ \ | |\/| | __| | _ / | || | / /\ \ / ____ \| | | | |____| | \ \ _| || |____ / ____ \ /_/____\_\_| _|_|______|_| \_\_____\_____/_/ \_\ / ____| | | | \/ | | | | | | | \ / | | | | | | | |\/| | | |____| |__| | | | | \_____|\____/|_| |_| _____ _ _ /\ / ____| /\ |_ _| \ | | / \ | | __ / \ | | | \| | / /\ \| | |_ | / /\ \ | | | . ` | / ____ \ |__| |/ ____ \ _| |_| |\ | /_/ \_\_____/_/ \_\_____|_| \_| */ contract MACA is ERC20, Ownable { constructor() ERC20("Make America Cum Again", "MACA") { _mint(_msgSender(), 470690690 * 1e18); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040518060400160405280601681526020017f4d616b6520416d65726963612043756d20416761696e000000000000000000008152506040518060400160405280600481526020017f4d41434100000000000000000000000000000000000000000000000000000000815250816003908161008b9190610559565b50806004908161009b9190610559565b5050506100ba6100af6100e860201b60201c565b6100ef60201b60201c565b6100e36100cb6100e860201b60201c565b6b018558a16eef0bd0ccc800006101b260201b60201c565b610728565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021790610682565b60405180910390fd5b6102315f838361031560201b60201c565b8060025f82825461024291906106cd565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461029491906106cd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102f8919061070f565b60405180910390a36103115f838361031a60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061039a57607f821691505b6020821081036103ad576103ac610356565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261040f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103d4565b61041986836103d4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61045d61045861045384610431565b61043a565b610431565b9050919050565b5f819050919050565b61047683610443565b61048a61048282610464565b8484546103e0565b825550505050565b5f90565b61049e610492565b6104a981848461046d565b505050565b5b818110156104cc576104c15f82610496565b6001810190506104af565b5050565b601f821115610511576104e2816103b3565b6104eb846103c5565b810160208510156104fa578190505b61050e610506856103c5565b8301826104ae565b50505b505050565b5f82821c905092915050565b5f6105315f1984600802610516565b1980831691505092915050565b5f6105498383610522565b9150826002028217905092915050565b6105628261031f565b67ffffffffffffffff81111561057b5761057a610329565b5b6105858254610383565b6105908282856104d0565b5f60209050601f8311600181146105c1575f84156105af578287015190505b6105b9858261053e565b865550610620565b601f1984166105cf866103b3565b5f5b828110156105f6578489015182556001820191506020850194506020810190506105d1565b86831015610613578489015161060f601f891682610522565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61066c601f83610628565b915061067782610638565b602082019050919050565b5f6020820190508181035f83015261069981610660565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6106d782610431565b91506106e283610431565b92508282019050808211156106fa576106f96106a0565b5b92915050565b61070981610431565b82525050565b5f6020820190506107225f830184610700565b92915050565b6116f4806107355f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610eca565b60405180910390f35b610124600480360381019061011f9190610f7b565b610388565b6040516101319190610fd3565b60405180910390f35b6101426103a5565b60405161014f9190610ffb565b60405180910390f35b610172600480360381019061016d9190611014565b6103ae565b60405161017f9190610fd3565b60405180910390f35b6101906104a0565b60405161019d919061107f565b60405180910390f35b6101c060048036038101906101bb9190610f7b565b6104a8565b6040516101cd9190610fd3565b60405180910390f35b6101f060048036038101906101eb9190611098565b61054f565b6040516101fd9190610ffb565b60405180910390f35b61020e610594565b005b61021861061b565b60405161022591906110d2565b60405180910390f35b610236610643565b6040516102439190610eca565b60405180910390f35b61026660048036038101906102619190610f7b565b6106d3565b6040516102739190610fd3565b60405180910390f35b61029660048036038101906102919190610f7b565b6107b9565b6040516102a39190610fd3565b60405180910390f35b6102c660048036038101906102c191906110eb565b6107d6565b6040516102d39190610ffb565b60405180910390f35b6102f660048036038101906102f19190611098565b610858565b005b60606003805461030790611156565b80601f016020809104026020016040519081016040528092919081815260200182805461033390611156565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f61039b61039461094e565b8484610955565b6001905092915050565b5f600254905090565b5f6103ba848484610b18565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61040161094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610477906111f6565b60405180910390fd5b6104948561048c61094e565b858403610955565b60019150509392505050565b5f6012905090565b5f6105456104b461094e565b848460015f6104c161094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105409190611241565b610955565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61059c61094e565b73ffffffffffffffffffffffffffffffffffffffff166105ba61061b565b73ffffffffffffffffffffffffffffffffffffffff1614610610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610607906112be565b60405180910390fd5b6106195f610d8d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461065290611156565b80601f016020809104026020016040519081016040528092919081815260200182805461067e90611156565b80156106c95780601f106106a0576101008083540402835291602001916106c9565b820191905f5260205f20905b8154815290600101906020018083116106ac57829003601f168201915b5050505050905090565b5f8060015f6106e061094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561079a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107919061134c565b60405180910390fd5b6107ae6107a561094e565b85858403610955565b600191505092915050565b5f6107cc6107c561094e565b8484610b18565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61086061094e565b73ffffffffffffffffffffffffffffffffffffffff1661087e61061b565b73ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb906112be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610939906113da565b60405180910390fd5b61094b81610d8d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90611468565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906114f6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b0b9190610ffb565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90611584565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90611612565b60405180910390fd5b610bff838383610e50565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906116a0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d109190611241565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d749190610ffb565b60405180910390a3610d87848484610e55565b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610e9c82610e5a565b610ea68185610e64565b9350610eb6818560208601610e74565b610ebf81610e82565b840191505092915050565b5f6020820190508181035f830152610ee28184610e92565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1782610eee565b9050919050565b610f2781610f0d565b8114610f31575f80fd5b50565b5f81359050610f4281610f1e565b92915050565b5f819050919050565b610f5a81610f48565b8114610f64575f80fd5b50565b5f81359050610f7581610f51565b92915050565b5f8060408385031215610f9157610f90610eea565b5b5f610f9e85828601610f34565b9250506020610faf85828601610f67565b9150509250929050565b5f8115159050919050565b610fcd81610fb9565b82525050565b5f602082019050610fe65f830184610fc4565b92915050565b610ff581610f48565b82525050565b5f60208201905061100e5f830184610fec565b92915050565b5f805f6060848603121561102b5761102a610eea565b5b5f61103886828701610f34565b935050602061104986828701610f34565b925050604061105a86828701610f67565b9150509250925092565b5f60ff82169050919050565b61107981611064565b82525050565b5f6020820190506110925f830184611070565b92915050565b5f602082840312156110ad576110ac610eea565b5b5f6110ba84828501610f34565b91505092915050565b6110cc81610f0d565b82525050565b5f6020820190506110e55f8301846110c3565b92915050565b5f806040838503121561110157611100610eea565b5b5f61110e85828601610f34565b925050602061111f85828601610f34565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061116d57607f821691505b6020821081036111805761117f611129565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6111e0602883610e64565b91506111eb82611186565b604082019050919050565b5f6020820190508181035f83015261120d816111d4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61124b82610f48565b915061125683610f48565b925082820190508082111561126e5761126d611214565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6112a8602083610e64565b91506112b382611274565b602082019050919050565b5f6020820190508181035f8301526112d58161129c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611336602583610e64565b9150611341826112dc565b604082019050919050565b5f6020820190508181035f8301526113638161132a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6113c4602683610e64565b91506113cf8261136a565b604082019050919050565b5f6020820190508181035f8301526113f1816113b8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611452602483610e64565b915061145d826113f8565b604082019050919050565b5f6020820190508181035f83015261147f81611446565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114e0602283610e64565b91506114eb82611486565b604082019050919050565b5f6020820190508181035f83015261150d816114d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61156e602583610e64565b915061157982611514565b604082019050919050565b5f6020820190508181035f83015261159b81611562565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115fc602383610e64565b9150611607826115a2565b604082019050919050565b5f6020820190508181035f830152611629816115f0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61168a602683610e64565b915061169582611630565b604082019050919050565b5f6020820190508181035f8301526116b78161167e565b905091905056fea26469706673582212207eedcbb600833142373bd59a20532b53c8254523cec351cc64f39dce8988d22f64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610eca565b60405180910390f35b610124600480360381019061011f9190610f7b565b610388565b6040516101319190610fd3565b60405180910390f35b6101426103a5565b60405161014f9190610ffb565b60405180910390f35b610172600480360381019061016d9190611014565b6103ae565b60405161017f9190610fd3565b60405180910390f35b6101906104a0565b60405161019d919061107f565b60405180910390f35b6101c060048036038101906101bb9190610f7b565b6104a8565b6040516101cd9190610fd3565b60405180910390f35b6101f060048036038101906101eb9190611098565b61054f565b6040516101fd9190610ffb565b60405180910390f35b61020e610594565b005b61021861061b565b60405161022591906110d2565b60405180910390f35b610236610643565b6040516102439190610eca565b60405180910390f35b61026660048036038101906102619190610f7b565b6106d3565b6040516102739190610fd3565b60405180910390f35b61029660048036038101906102919190610f7b565b6107b9565b6040516102a39190610fd3565b60405180910390f35b6102c660048036038101906102c191906110eb565b6107d6565b6040516102d39190610ffb565b60405180910390f35b6102f660048036038101906102f19190611098565b610858565b005b60606003805461030790611156565b80601f016020809104026020016040519081016040528092919081815260200182805461033390611156565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f61039b61039461094e565b8484610955565b6001905092915050565b5f600254905090565b5f6103ba848484610b18565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61040161094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610477906111f6565b60405180910390fd5b6104948561048c61094e565b858403610955565b60019150509392505050565b5f6012905090565b5f6105456104b461094e565b848460015f6104c161094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105409190611241565b610955565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61059c61094e565b73ffffffffffffffffffffffffffffffffffffffff166105ba61061b565b73ffffffffffffffffffffffffffffffffffffffff1614610610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610607906112be565b60405180910390fd5b6106195f610d8d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461065290611156565b80601f016020809104026020016040519081016040528092919081815260200182805461067e90611156565b80156106c95780601f106106a0576101008083540402835291602001916106c9565b820191905f5260205f20905b8154815290600101906020018083116106ac57829003601f168201915b5050505050905090565b5f8060015f6106e061094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561079a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107919061134c565b60405180910390fd5b6107ae6107a561094e565b85858403610955565b600191505092915050565b5f6107cc6107c561094e565b8484610b18565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61086061094e565b73ffffffffffffffffffffffffffffffffffffffff1661087e61061b565b73ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb906112be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610939906113da565b60405180910390fd5b61094b81610d8d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90611468565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906114f6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b0b9190610ffb565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90611584565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90611612565b60405180910390fd5b610bff838383610e50565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906116a0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d109190611241565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d749190610ffb565b60405180910390a3610d87848484610e55565b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610e9c82610e5a565b610ea68185610e64565b9350610eb6818560208601610e74565b610ebf81610e82565b840191505092915050565b5f6020820190508181035f830152610ee28184610e92565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1782610eee565b9050919050565b610f2781610f0d565b8114610f31575f80fd5b50565b5f81359050610f4281610f1e565b92915050565b5f819050919050565b610f5a81610f48565b8114610f64575f80fd5b50565b5f81359050610f7581610f51565b92915050565b5f8060408385031215610f9157610f90610eea565b5b5f610f9e85828601610f34565b9250506020610faf85828601610f67565b9150509250929050565b5f8115159050919050565b610fcd81610fb9565b82525050565b5f602082019050610fe65f830184610fc4565b92915050565b610ff581610f48565b82525050565b5f60208201905061100e5f830184610fec565b92915050565b5f805f6060848603121561102b5761102a610eea565b5b5f61103886828701610f34565b935050602061104986828701610f34565b925050604061105a86828701610f67565b9150509250925092565b5f60ff82169050919050565b61107981611064565b82525050565b5f6020820190506110925f830184611070565b92915050565b5f602082840312156110ad576110ac610eea565b5b5f6110ba84828501610f34565b91505092915050565b6110cc81610f0d565b82525050565b5f6020820190506110e55f8301846110c3565b92915050565b5f806040838503121561110157611100610eea565b5b5f61110e85828601610f34565b925050602061111f85828601610f34565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061116d57607f821691505b6020821081036111805761117f611129565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6111e0602883610e64565b91506111eb82611186565b604082019050919050565b5f6020820190508181035f83015261120d816111d4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61124b82610f48565b915061125683610f48565b925082820190508082111561126e5761126d611214565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6112a8602083610e64565b91506112b382611274565b602082019050919050565b5f6020820190508181035f8301526112d58161129c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611336602583610e64565b9150611341826112dc565b604082019050919050565b5f6020820190508181035f8301526113638161132a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6113c4602683610e64565b91506113cf8261136a565b604082019050919050565b5f6020820190508181035f8301526113f1816113b8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611452602483610e64565b915061145d826113f8565b604082019050919050565b5f6020820190508181035f83015261147f81611446565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114e0602283610e64565b91506114eb82611486565b604082019050919050565b5f6020820190508181035f83015261150d816114d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61156e602583610e64565b915061157982611514565b604082019050919050565b5f6020820190508181035f83015261159b81611562565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115fc602383610e64565b9150611607826115a2565b604082019050919050565b5f6020820190508181035f830152611629816115f0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61168a602683610e64565b915061169582611630565b604082019050919050565b5f6020820190508181035f8301526116b78161167e565b905091905056fea26469706673582212207eedcbb600833142373bd59a20532b53c8254523cec351cc64f39dce8988d22f64736f6c634300081a0033
Deployed Bytecode Sourcemap
21053:152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10180:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12347:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11300:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12998:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11142:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13899:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11471:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3838:94;;;:::i;:::-;;3187:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10399:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14617:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11811:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12049:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4087:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10180:100;10234:13;10267:5;10260:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10180:100;:::o;12347:169::-;12430:4;12447:39;12456:12;:10;:12::i;:::-;12470:7;12479:6;12447:8;:39::i;:::-;12504:4;12497:11;;12347:169;;;;:::o;11300:108::-;11361:7;11388:12;;11381:19;;11300:108;:::o;12998:492::-;13138:4;13155:36;13165:6;13173:9;13184:6;13155:9;:36::i;:::-;13204:24;13231:11;:19;13243:6;13231:19;;;;;;;;;;;;;;;:33;13251:12;:10;:12::i;:::-;13231:33;;;;;;;;;;;;;;;;13204:60;;13303:6;13283:16;:26;;13275:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13390:57;13399:6;13407:12;:10;:12::i;:::-;13440:6;13421:16;:25;13390:8;:57::i;:::-;13478:4;13471:11;;;12998:492;;;;;:::o;11142:93::-;11200:5;11225:2;11218:9;;11142:93;:::o;13899:215::-;13987:4;14004:80;14013:12;:10;:12::i;:::-;14027:7;14073:10;14036:11;:25;14048:12;:10;:12::i;:::-;14036:25;;;;;;;;;;;;;;;:34;14062:7;14036:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14004:8;:80::i;:::-;14102:4;14095:11;;13899:215;;;;:::o;11471:127::-;11545:7;11572:9;:18;11582:7;11572:18;;;;;;;;;;;;;;;;11565:25;;11471:127;;;:::o;3838:94::-;3418:12;:10;:12::i;:::-;3407:23;;:7;:5;:7::i;:::-;:23;;;3399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3903:21:::1;3921:1;3903:9;:21::i;:::-;3838:94::o:0;3187:87::-;3233:7;3260:6;;;;;;;;;;;3253:13;;3187:87;:::o;10399:104::-;10455:13;10488:7;10481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10399:104;:::o;14617:413::-;14710:4;14727:24;14754:11;:25;14766:12;:10;:12::i;:::-;14754:25;;;;;;;;;;;;;;;:34;14780:7;14754:34;;;;;;;;;;;;;;;;14727:61;;14827:15;14807:16;:35;;14799:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14920:67;14929:12;:10;:12::i;:::-;14943:7;14971:15;14952:16;:34;14920:8;:67::i;:::-;15018:4;15011:11;;;14617:413;;;;:::o;11811:175::-;11897:4;11914:42;11924:12;:10;:12::i;:::-;11938:9;11949:6;11914:9;:42::i;:::-;11974:4;11967:11;;11811:175;;;;:::o;12049:151::-;12138:7;12165:11;:18;12177:5;12165:18;;;;;;;;;;;;;;;:27;12184:7;12165:27;;;;;;;;;;;;;;;;12158:34;;12049:151;;;;:::o;4087:192::-;3418:12;:10;:12::i;:::-;3407:23;;:7;:5;:7::i;:::-;:23;;;3399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4196:1:::1;4176:22;;:8;:22;;::::0;4168:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4252:19;4262:8;4252:9;:19::i;:::-;4087:192:::0;:::o;1927:98::-;1980:7;2007:10;2000:17;;1927:98;:::o;18301:380::-;18454:1;18437:19;;:5;:19;;;18429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18535:1;18516:21;;:7;:21;;;18508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18619:6;18589:11;:18;18601:5;18589:18;;;;;;;;;;;;;;;:27;18608:7;18589:27;;;;;;;;;;;;;;;:36;;;;18657:7;18641:32;;18650:5;18641:32;;;18666:6;18641:32;;;;;;:::i;:::-;;;;;;;;18301:380;;;:::o;15520:733::-;15678:1;15660:20;;:6;:20;;;15652:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15762:1;15741:23;;:9;:23;;;15733:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15817:47;15838:6;15846:9;15857:6;15817:20;:47::i;:::-;15877:21;15901:9;:17;15911:6;15901:17;;;;;;;;;;;;;;;;15877:41;;15954:6;15937:13;:23;;15929:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16075:6;16059:13;:22;16039:9;:17;16049:6;16039:17;;;;;;;;;;;;;;;:42;;;;16127:6;16103:9;:20;16113:9;16103:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16168:9;16151:35;;16160:6;16151:35;;;16179:6;16151:35;;;;;;:::i;:::-;;;;;;;;16199:46;16219:6;16227:9;16238:6;16199:19;:46::i;:::-;15641:612;15520:733;;;:::o;4287:173::-;4343:16;4362:6;;;;;;;;;;;4343:25;;4388:8;4379:6;;:17;;;;;;;;;;;;;;;;;;4443:8;4412:40;;4433:8;4412:40;;;;;;;;;;;;4332:128;4287:173;:::o;19281:125::-;;;;:::o;20010:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:227::-;6565:34;6561:1;6553:6;6549:14;6542:58;6634:10;6629:2;6621:6;6617:15;6610:35;6425:227;:::o;6658:366::-;6800:3;6821:67;6885:2;6880:3;6821:67;:::i;:::-;6814:74;;6897:93;6986:3;6897:93;:::i;:::-;7015:2;7010:3;7006:12;6999:19;;6658:366;;;:::o;7030:419::-;7196:4;7234:2;7223:9;7219:18;7211:26;;7283:9;7277:4;7273:20;7269:1;7258:9;7254:17;7247:47;7311:131;7437:4;7311:131;:::i;:::-;7303:139;;7030:419;;;:::o;7455:180::-;7503:77;7500:1;7493:88;7600:4;7597:1;7590:15;7624:4;7621:1;7614:15;7641:191;7681:3;7700:20;7718:1;7700:20;:::i;:::-;7695:25;;7734:20;7752:1;7734:20;:::i;:::-;7729:25;;7777:1;7774;7770:9;7763:16;;7798:3;7795:1;7792:10;7789:36;;;7805:18;;:::i;:::-;7789:36;7641:191;;;;:::o;7838:182::-;7978:34;7974:1;7966:6;7962:14;7955:58;7838:182;:::o;8026:366::-;8168:3;8189:67;8253:2;8248:3;8189:67;:::i;:::-;8182:74;;8265:93;8354:3;8265:93;:::i;:::-;8383:2;8378:3;8374:12;8367:19;;8026:366;;;:::o;8398:419::-;8564:4;8602:2;8591:9;8587:18;8579:26;;8651:9;8645:4;8641:20;8637:1;8626:9;8622:17;8615:47;8679:131;8805:4;8679:131;:::i;:::-;8671:139;;8398:419;;;:::o;8823:224::-;8963:34;8959:1;8951:6;8947:14;8940:58;9032:7;9027:2;9019:6;9015:15;9008:32;8823:224;:::o;9053:366::-;9195:3;9216:67;9280:2;9275:3;9216:67;:::i;:::-;9209:74;;9292:93;9381:3;9292:93;:::i;:::-;9410:2;9405:3;9401:12;9394:19;;9053:366;;;:::o;9425:419::-;9591:4;9629:2;9618:9;9614:18;9606:26;;9678:9;9672:4;9668:20;9664:1;9653:9;9649:17;9642:47;9706:131;9832:4;9706:131;:::i;:::-;9698:139;;9425:419;;;:::o;9850:225::-;9990:34;9986:1;9978:6;9974:14;9967:58;10059:8;10054:2;10046:6;10042:15;10035:33;9850:225;:::o;10081:366::-;10223:3;10244:67;10308:2;10303:3;10244:67;:::i;:::-;10237:74;;10320:93;10409:3;10320:93;:::i;:::-;10438:2;10433:3;10429:12;10422:19;;10081:366;;;:::o;10453:419::-;10619:4;10657:2;10646:9;10642:18;10634:26;;10706:9;10700:4;10696:20;10692:1;10681:9;10677:17;10670:47;10734:131;10860:4;10734:131;:::i;:::-;10726:139;;10453:419;;;:::o;10878:223::-;11018:34;11014:1;11006:6;11002:14;10995:58;11087:6;11082:2;11074:6;11070:15;11063:31;10878:223;:::o;11107:366::-;11249:3;11270:67;11334:2;11329:3;11270:67;:::i;:::-;11263:74;;11346:93;11435:3;11346:93;:::i;:::-;11464:2;11459:3;11455:12;11448:19;;11107:366;;;:::o;11479:419::-;11645:4;11683:2;11672:9;11668:18;11660:26;;11732:9;11726:4;11722:20;11718:1;11707:9;11703:17;11696:47;11760:131;11886:4;11760:131;:::i;:::-;11752:139;;11479:419;;;:::o;11904:221::-;12044:34;12040:1;12032:6;12028:14;12021:58;12113:4;12108:2;12100:6;12096:15;12089:29;11904:221;:::o;12131:366::-;12273:3;12294:67;12358:2;12353:3;12294:67;:::i;:::-;12287:74;;12370:93;12459:3;12370:93;:::i;:::-;12488:2;12483:3;12479:12;12472:19;;12131:366;;;:::o;12503:419::-;12669:4;12707:2;12696:9;12692:18;12684:26;;12756:9;12750:4;12746:20;12742:1;12731:9;12727:17;12720:47;12784:131;12910:4;12784:131;:::i;:::-;12776:139;;12503:419;;;:::o;12928:224::-;13068:34;13064:1;13056:6;13052:14;13045:58;13137:7;13132:2;13124:6;13120:15;13113:32;12928:224;:::o;13158:366::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:419::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13783:9;13777:4;13773:20;13769:1;13758:9;13754:17;13747:47;13811:131;13937:4;13811:131;:::i;:::-;13803:139;;13530:419;;;:::o;13955:222::-;14095:34;14091:1;14083:6;14079:14;14072:58;14164:5;14159:2;14151:6;14147:15;14140:30;13955:222;:::o;14183:366::-;14325:3;14346:67;14410:2;14405:3;14346:67;:::i;:::-;14339:74;;14422:93;14511:3;14422:93;:::i;:::-;14540:2;14535:3;14531:12;14524:19;;14183:366;;;:::o;14555:419::-;14721:4;14759:2;14748:9;14744:18;14736:26;;14808:9;14802:4;14798:20;14794:1;14783:9;14779:17;14772:47;14836:131;14962:4;14836:131;:::i;:::-;14828:139;;14555:419;;;:::o;14980:225::-;15120:34;15116:1;15108:6;15104:14;15097:58;15189:8;15184:2;15176:6;15172:15;15165:33;14980:225;:::o;15211:366::-;15353:3;15374:67;15438:2;15433:3;15374:67;:::i;:::-;15367:74;;15450:93;15539:3;15450:93;:::i;:::-;15568:2;15563:3;15559:12;15552:19;;15211:366;;;:::o;15583:419::-;15749:4;15787:2;15776:9;15772:18;15764:26;;15836:9;15830:4;15826:20;15822:1;15811:9;15807:17;15800:47;15864:131;15990:4;15864:131;:::i;:::-;15856:139;;15583:419;;;:::o
Swarm Source
ipfs://7eedcbb600833142373bd59a20532b53c8254523cec351cc64f39dce8988d22f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.