Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 DOOJ
Holders
15
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,246,687.82925301614874498 DOOJValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DoodleJump
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-20 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // https://doodlejump.xyz/ // https://x.com/doodlejump_labs // https://t.me/DoodleJump_Labs pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(isOwner()); _; } function isOwner() public view returns (bool) { return msg.sender == _owner; } function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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); function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) 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 // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; 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; } 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity ^0.8.15; contract DoodleJump is ERC20, Ownable { constructor() ERC20("Doodle Jump", "DOOJ") Ownable() { _mint(msg.sender, 1000000000 * 10 ** decimals()); } }
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":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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
608060405234801562000010575f80fd5b506040518060400160405280600b81526020017f446f6f646c65204a756d700000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f4f4a0000000000000000000000000000000000000000000000000000000081525081600390816200008e91906200057f565b508060049081620000a091906200057f565b5050503360055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36200019e3362000173620001a460201b60201c565b600a620001819190620007ec565b633b9aca006200019291906200083c565b620001ac60201b60201c565b6200096a565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200021d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021490620008e4565b60405180910390fd5b620002305f83836200031160201b60201c565b8060025f82825462000243919062000904565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f291906200094f565b60405180910390a36200030d5f83836200031660201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200039757607f821691505b602082108103620003ad57620003ac62000352565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003d4565b6200041d8683620003d4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000467620004616200045b8462000435565b6200043e565b62000435565b9050919050565b5f819050919050565b620004828362000447565b6200049a62000491826200046e565b848454620003e0565b825550505050565b5f90565b620004b0620004a2565b620004bd81848462000477565b505050565b5b81811015620004e457620004d85f82620004a6565b600181019050620004c3565b5050565b601f8211156200053357620004fd81620003b3565b6200050884620003c5565b8101602085101562000518578190505b620005306200052785620003c5565b830182620004c2565b50505b505050565b5f82821c905092915050565b5f620005555f198460080262000538565b1980831691505092915050565b5f6200056f838362000544565b9150826002028217905092915050565b6200058a826200031b565b67ffffffffffffffff811115620005a657620005a562000325565b5b620005b282546200037f565b620005bf828285620004e8565b5f60209050601f831160018114620005f5575f8415620005e0578287015190505b620005ec858262000562565b8655506200065b565b601f1984166200060586620003b3565b5f5b828110156200062e5784890151825560018201915060208501945060208101905062000607565b868310156200064e57848901516200064a601f89168262000544565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006ed57808604811115620006c557620006c462000663565b5b6001851615620006d55780820291505b8081029050620006e58562000690565b9450620006a5565b94509492505050565b5f82620007075760019050620007d9565b8162000716575f9050620007d9565b81600181146200072f57600281146200073a5762000770565b6001915050620007d9565b60ff8411156200074f576200074e62000663565b5b8360020a91508482111562000769576200076862000663565b5b50620007d9565b5060208310610133831016604e8410600b8410161715620007aa5782820a905083811115620007a457620007a362000663565b5b620007d9565b620007b984848460016200069c565b92509050818404811115620007d357620007d262000663565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007f88262000435565b91506200080583620007e0565b9250620008347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006f6565b905092915050565b5f620008488262000435565b9150620008558362000435565b9250828202620008658162000435565b915082820484148315176200087f576200087e62000663565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620008cc601f8362000886565b9150620008d98262000896565b602082019050919050565b5f6020820190508181035f830152620008fd81620008be565b9050919050565b5f620009108262000435565b91506200091d8362000435565b925082820190508082111562000938576200093762000663565b5b92915050565b620009498162000435565b82525050565b5f602082019050620009645f8301846200093e565b92915050565b6114f580620009785f395ff3fe608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610275578063a9059cbb146102a5578063dd62ed3e146102d5578063f2fde38b14610305576100f3565b8063715018a6146102115780638da5cb5b1461021b5780638f32d59b1461023957806395d89b4114610257576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806339509351146101b157806370a08231146101e1576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff610321565b60405161010c9190610de7565b60405180910390f35b61012f600480360381019061012a9190610e98565b6103b1565b60405161013c9190610ef0565b60405180910390f35b61014d6103d3565b60405161015a9190610f18565b60405180910390f35b61017d60048036038101906101789190610f31565b6103dc565b60405161018a9190610ef0565b60405180910390f35b61019b61040a565b6040516101a89190610f9c565b60405180910390f35b6101cb60048036038101906101c69190610e98565b610412565b6040516101d89190610ef0565b60405180910390f35b6101fb60048036038101906101f69190610fb5565b610448565b6040516102089190610f18565b60405180910390f35b61021961048d565b005b61022361055a565b6040516102309190610fef565b60405180910390f35b610241610582565b60405161024e9190610ef0565b60405180910390f35b61025f6105d8565b60405161026c9190610de7565b60405180910390f35b61028f600480360381019061028a9190610e98565b610668565b60405161029c9190610ef0565b60405180910390f35b6102bf60048036038101906102ba9190610e98565b6106dd565b6040516102cc9190610ef0565b60405180910390f35b6102ef60048036038101906102ea9190611008565b6106ff565b6040516102fc9190610f18565b60405180910390f35b61031f600480360381019061031a9190610fb5565b610781565b005b60606003805461033090611073565b80601f016020809104026020016040519081016040528092919081815260200182805461035c90611073565b80156103a75780601f1061037e576101008083540402835291602001916103a7565b820191905f5260205f20905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b5f806103bb61079d565b90506103c88185856107a4565b600191505092915050565b5f600254905090565b5f806103e661079d565b90506103f3858285610967565b6103fe8585856109f2565b60019150509392505050565b5f6012905090565b5f8061041c61079d565b905061043d81858561042e85896106ff565b61043891906110d0565b6107a4565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610495610582565b61049d575f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600480546105e790611073565b80601f016020809104026020016040519081016040528092919081815260200182805461061390611073565b801561065e5780601f106106355761010080835404028352916020019161065e565b820191905f5260205f20905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b5f8061067261079d565b90505f61067f82866106ff565b9050838110156106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb90611173565b60405180910390fd5b6106d182868684036107a4565b60019250505092915050565b5f806106e761079d565b90506106f48185856109f2565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610789610582565b610791575f80fd5b61079a81610c5e565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080990611201565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108779061128f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161095a9190610f18565b60405180910390a3505050565b5f61097284846106ff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109ec57818110156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d5906112f7565b60405180910390fd5b6109eb84848484036107a4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790611385565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590611413565b60405180910390fd5b610ad9838383610d53565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b53906114a1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c459190610f18565b60405180910390a3610c58848484610d58565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c95575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d94578082015181840152602081019050610d79565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610db982610d5d565b610dc38185610d67565b9350610dd3818560208601610d77565b610ddc81610d9f565b840191505092915050565b5f6020820190508181035f830152610dff8184610daf565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e3482610e0b565b9050919050565b610e4481610e2a565b8114610e4e575f80fd5b50565b5f81359050610e5f81610e3b565b92915050565b5f819050919050565b610e7781610e65565b8114610e81575f80fd5b50565b5f81359050610e9281610e6e565b92915050565b5f8060408385031215610eae57610ead610e07565b5b5f610ebb85828601610e51565b9250506020610ecc85828601610e84565b9150509250929050565b5f8115159050919050565b610eea81610ed6565b82525050565b5f602082019050610f035f830184610ee1565b92915050565b610f1281610e65565b82525050565b5f602082019050610f2b5f830184610f09565b92915050565b5f805f60608486031215610f4857610f47610e07565b5b5f610f5586828701610e51565b9350506020610f6686828701610e51565b9250506040610f7786828701610e84565b9150509250925092565b5f60ff82169050919050565b610f9681610f81565b82525050565b5f602082019050610faf5f830184610f8d565b92915050565b5f60208284031215610fca57610fc9610e07565b5b5f610fd784828501610e51565b91505092915050565b610fe981610e2a565b82525050565b5f6020820190506110025f830184610fe0565b92915050565b5f806040838503121561101e5761101d610e07565b5b5f61102b85828601610e51565b925050602061103c85828601610e51565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061108a57607f821691505b60208210810361109d5761109c611046565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110da82610e65565b91506110e583610e65565b92508282019050808211156110fd576110fc6110a3565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61115d602583610d67565b915061116882611103565b604082019050919050565b5f6020820190508181035f83015261118a81611151565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6111eb602483610d67565b91506111f682611191565b604082019050919050565b5f6020820190508181035f830152611218816111df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611279602283610d67565b91506112848261121f565b604082019050919050565b5f6020820190508181035f8301526112a68161126d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6112e1601d83610d67565b91506112ec826112ad565b602082019050919050565b5f6020820190508181035f83015261130e816112d5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61136f602583610d67565b915061137a82611315565b604082019050919050565b5f6020820190508181035f83015261139c81611363565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6113fd602383610d67565b9150611408826113a3565b604082019050919050565b5f6020820190508181035f83015261142a816113f1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61148b602683610d67565b915061149682611431565b604082019050919050565b5f6020820190508181035f8301526114b88161147f565b905091905056fea2646970667358221220c8663614e774ae5bc6f7b70976c19da8265fd798a707f6a92e043fbacacd0eef64736f6c63430008160033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610275578063a9059cbb146102a5578063dd62ed3e146102d5578063f2fde38b14610305576100f3565b8063715018a6146102115780638da5cb5b1461021b5780638f32d59b1461023957806395d89b4114610257576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806339509351146101b157806370a08231146101e1576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff610321565b60405161010c9190610de7565b60405180910390f35b61012f600480360381019061012a9190610e98565b6103b1565b60405161013c9190610ef0565b60405180910390f35b61014d6103d3565b60405161015a9190610f18565b60405180910390f35b61017d60048036038101906101789190610f31565b6103dc565b60405161018a9190610ef0565b60405180910390f35b61019b61040a565b6040516101a89190610f9c565b60405180910390f35b6101cb60048036038101906101c69190610e98565b610412565b6040516101d89190610ef0565b60405180910390f35b6101fb60048036038101906101f69190610fb5565b610448565b6040516102089190610f18565b60405180910390f35b61021961048d565b005b61022361055a565b6040516102309190610fef565b60405180910390f35b610241610582565b60405161024e9190610ef0565b60405180910390f35b61025f6105d8565b60405161026c9190610de7565b60405180910390f35b61028f600480360381019061028a9190610e98565b610668565b60405161029c9190610ef0565b60405180910390f35b6102bf60048036038101906102ba9190610e98565b6106dd565b6040516102cc9190610ef0565b60405180910390f35b6102ef60048036038101906102ea9190611008565b6106ff565b6040516102fc9190610f18565b60405180910390f35b61031f600480360381019061031a9190610fb5565b610781565b005b60606003805461033090611073565b80601f016020809104026020016040519081016040528092919081815260200182805461035c90611073565b80156103a75780601f1061037e576101008083540402835291602001916103a7565b820191905f5260205f20905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b5f806103bb61079d565b90506103c88185856107a4565b600191505092915050565b5f600254905090565b5f806103e661079d565b90506103f3858285610967565b6103fe8585856109f2565b60019150509392505050565b5f6012905090565b5f8061041c61079d565b905061043d81858561042e85896106ff565b61043891906110d0565b6107a4565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610495610582565b61049d575f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600480546105e790611073565b80601f016020809104026020016040519081016040528092919081815260200182805461061390611073565b801561065e5780601f106106355761010080835404028352916020019161065e565b820191905f5260205f20905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b5f8061067261079d565b90505f61067f82866106ff565b9050838110156106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb90611173565b60405180910390fd5b6106d182868684036107a4565b60019250505092915050565b5f806106e761079d565b90506106f48185856109f2565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610789610582565b610791575f80fd5b61079a81610c5e565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080990611201565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108779061128f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161095a9190610f18565b60405180910390a3505050565b5f61097284846106ff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109ec57818110156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d5906112f7565b60405180910390fd5b6109eb84848484036107a4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790611385565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590611413565b60405180910390fd5b610ad9838383610d53565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b53906114a1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c459190610f18565b60405180910390a3610c58848484610d58565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c95575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d94578082015181840152602081019050610d79565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610db982610d5d565b610dc38185610d67565b9350610dd3818560208601610d77565b610ddc81610d9f565b840191505092915050565b5f6020820190508181035f830152610dff8184610daf565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e3482610e0b565b9050919050565b610e4481610e2a565b8114610e4e575f80fd5b50565b5f81359050610e5f81610e3b565b92915050565b5f819050919050565b610e7781610e65565b8114610e81575f80fd5b50565b5f81359050610e9281610e6e565b92915050565b5f8060408385031215610eae57610ead610e07565b5b5f610ebb85828601610e51565b9250506020610ecc85828601610e84565b9150509250929050565b5f8115159050919050565b610eea81610ed6565b82525050565b5f602082019050610f035f830184610ee1565b92915050565b610f1281610e65565b82525050565b5f602082019050610f2b5f830184610f09565b92915050565b5f805f60608486031215610f4857610f47610e07565b5b5f610f5586828701610e51565b9350506020610f6686828701610e51565b9250506040610f7786828701610e84565b9150509250925092565b5f60ff82169050919050565b610f9681610f81565b82525050565b5f602082019050610faf5f830184610f8d565b92915050565b5f60208284031215610fca57610fc9610e07565b5b5f610fd784828501610e51565b91505092915050565b610fe981610e2a565b82525050565b5f6020820190506110025f830184610fe0565b92915050565b5f806040838503121561101e5761101d610e07565b5b5f61102b85828601610e51565b925050602061103c85828601610e51565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061108a57607f821691505b60208210810361109d5761109c611046565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110da82610e65565b91506110e583610e65565b92508282019050808211156110fd576110fc6110a3565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61115d602583610d67565b915061116882611103565b604082019050919050565b5f6020820190508181035f83015261118a81611151565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6111eb602483610d67565b91506111f682611191565b604082019050919050565b5f6020820190508181035f830152611218816111df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611279602283610d67565b91506112848261121f565b604082019050919050565b5f6020820190508181035f8301526112a68161126d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6112e1601d83610d67565b91506112ec826112ad565b602082019050919050565b5f6020820190508181035f83015261130e816112d5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61136f602583610d67565b915061137a82611315565b604082019050919050565b5f6020820190508181035f83015261139c81611363565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6113fd602383610d67565b9150611408826113a3565b604082019050919050565b5f6020820190508181035f83015261142a816113f1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61148b602683610d67565b915061149682611431565b604082019050919050565b5f6020820190508181035f8301526114b88161147f565b905091905056fea2646970667358221220c8663614e774ae5bc6f7b70976c19da8265fd798a707f6a92e043fbacacd0eef64736f6c63430008160033
Deployed Bytecode Sourcemap
12963:168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5405:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7139:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5898:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7348:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5740:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7677:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6069:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1052:140;;;:::i;:::-;;787:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;952:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5624:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7929:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6402:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6668:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1200:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5405:100;5459:13;5492:5;5485:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5405:100;:::o;7139:201::-;7222:4;7239:13;7255:12;:10;:12::i;:::-;7239:28;;7278:32;7287:5;7294:7;7303:6;7278:8;:32::i;:::-;7328:4;7321:11;;;7139:201;;;;:::o;5898:108::-;5959:7;5986:12;;5979:19;;5898:108;:::o;7348:315::-;7489:4;7516:15;7534:12;:10;:12::i;:::-;7516:30;;7557:38;7573:4;7579:7;7588:6;7557:15;:38::i;:::-;7606:27;7616:4;7622:2;7626:6;7606:9;:27::i;:::-;7651:4;7644:11;;;7348:315;;;;;:::o;5740:93::-;5798:5;5823:2;5816:9;;5740:93;:::o;7677:238::-;7765:4;7782:13;7798:12;:10;:12::i;:::-;7782:28;;7821:64;7830:5;7837:7;7874:10;7846:25;7856:5;7863:7;7846:9;:25::i;:::-;:38;;;;:::i;:::-;7821:8;:64::i;:::-;7903:4;7896:11;;;7677:238;;;;:::o;6069:127::-;6143:7;6170:9;:18;6180:7;6170:18;;;;;;;;;;;;;;;;6163:25;;6069:127;;;:::o;1052:140::-;914:9;:7;:9::i;:::-;906:18;;;;;;1151:1:::1;1114:40;;1135:6;;;;;;;;;;;1114:40;;;;;;;;;;;;1182:1;1165:6;;:19;;;;;;;;;;;;;;;;;;1052:140::o:0;787:79::-;825:7;852:6;;;;;;;;;;;845:13;;787:79;:::o;952:92::-;992:4;1030:6;;;;;;;;;;;1016:20;;:10;:20;;;1009:27;;952:92;:::o;5624:104::-;5680:13;5713:7;5706:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5624:104;:::o;7929:436::-;8022:4;8039:13;8055:12;:10;:12::i;:::-;8039:28;;8078:24;8105:25;8115:5;8122:7;8105:9;:25::i;:::-;8078:52;;8169:15;8149:16;:35;;8141:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8262:60;8271:5;8278:7;8306:15;8287:16;:34;8262:8;:60::i;:::-;8353:4;8346:11;;;;7929:436;;;;:::o;6402:203::-;6481:4;6498:13;6514:12;:10;:12::i;:::-;6498:28;;6537;6547:5;6554:2;6558:6;6537:9;:28::i;:::-;6593:4;6586:11;;;6402:203;;;;:::o;6668:151::-;6757:7;6784:11;:18;6796:5;6784:18;;;;;;;;;;;;;;;:27;6803:7;6784:27;;;;;;;;;;;;;;;;6777:34;;6668:151;;;;:::o;1200:109::-;914:9;:7;:9::i;:::-;906:18;;;;;;1273:28:::1;1292:8;1273:18;:28::i;:::-;1200:109:::0;:::o;298:98::-;351:7;378:10;371:17;;298:98;:::o;11534:380::-;11687:1;11670:19;;:5;:19;;;11662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11768:1;11749:21;;:7;:21;;;11741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11852:6;11822:11;:18;11834:5;11822:18;;;;;;;;;;;;;;;:27;11841:7;11822:27;;;;;;;;;;;;;;;:36;;;;11890:7;11874:32;;11883:5;11874:32;;;11899:6;11874:32;;;;;;:::i;:::-;;;;;;;;11534:380;;;:::o;12205:453::-;12340:24;12367:25;12377:5;12384:7;12367:9;:25::i;:::-;12340:52;;12427:17;12407:16;:37;12403:248;;12489:6;12469:16;:26;;12461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12573:51;12582:5;12589:7;12617:6;12598:16;:25;12573:8;:51::i;:::-;12403:248;12329:329;12205:453;;;:::o;8835:848::-;8982:1;8966:18;;:4;:18;;;8958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9059:1;9045:16;;:2;:16;;;9037:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9122:38;9143:4;9149:2;9153:6;9122:20;:38::i;:::-;9173:19;9195:9;:15;9205:4;9195:15;;;;;;;;;;;;;;;;9173:37;;9244:6;9229:11;:21;;9221:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;9361:6;9347:11;:20;9329:9;:15;9339:4;9329:15;;;;;;;;;;;;;;;:38;;;;9564:6;9547:9;:13;9557:2;9547:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9614:2;9599:26;;9608:4;9599:26;;;9618:6;9599:26;;;;;;:::i;:::-;;;;;;;;9638:37;9658:4;9664:2;9668:6;9638:19;:37::i;:::-;8947:736;8835:848;;;:::o;1317:187::-;1411:1;1391:22;;:8;:22;;;1383:31;;;;;;1459:8;1430:38;;1451:6;;;;;;;;;;;1430:38;;;;;;;;;;;;1488:8;1479:6;;:17;;;;;;;;;;;;;;;;;;1317:187;:::o;12666:125::-;;;;:::o;12804: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:224::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:7;7119:2;7111:6;7107:15;7100:32;6915:224;:::o;7145:366::-;7287:3;7308:67;7372:2;7367:3;7308:67;:::i;:::-;7301:74;;7384:93;7473:3;7384:93;:::i;:::-;7502:2;7497:3;7493:12;7486:19;;7145:366;;;:::o;7517:419::-;7683:4;7721:2;7710:9;7706:18;7698:26;;7770:9;7764:4;7760:20;7756:1;7745:9;7741:17;7734:47;7798:131;7924:4;7798:131;:::i;:::-;7790:139;;7517:419;;;:::o;7942:223::-;8082:34;8078:1;8070:6;8066:14;8059:58;8151:6;8146:2;8138:6;8134:15;8127:31;7942:223;:::o;8171:366::-;8313:3;8334:67;8398:2;8393:3;8334:67;:::i;:::-;8327:74;;8410:93;8499:3;8410:93;:::i;:::-;8528:2;8523:3;8519:12;8512:19;;8171:366;;;:::o;8543:419::-;8709:4;8747:2;8736:9;8732:18;8724:26;;8796:9;8790:4;8786:20;8782:1;8771:9;8767:17;8760:47;8824:131;8950:4;8824:131;:::i;:::-;8816:139;;8543:419;;;:::o;8968:221::-;9108:34;9104:1;9096:6;9092:14;9085:58;9177:4;9172:2;9164:6;9160:15;9153:29;8968:221;:::o;9195:366::-;9337:3;9358:67;9422:2;9417:3;9358:67;:::i;:::-;9351:74;;9434:93;9523:3;9434:93;:::i;:::-;9552:2;9547:3;9543:12;9536:19;;9195:366;;;:::o;9567:419::-;9733:4;9771:2;9760:9;9756:18;9748:26;;9820:9;9814:4;9810:20;9806:1;9795:9;9791:17;9784:47;9848:131;9974:4;9848:131;:::i;:::-;9840:139;;9567:419;;;:::o;9992:179::-;10132:31;10128:1;10120:6;10116:14;10109:55;9992:179;:::o;10177:366::-;10319:3;10340:67;10404:2;10399:3;10340:67;:::i;:::-;10333:74;;10416:93;10505:3;10416:93;:::i;:::-;10534:2;10529:3;10525:12;10518:19;;10177:366;;;:::o;10549:419::-;10715:4;10753:2;10742:9;10738:18;10730:26;;10802:9;10796:4;10792:20;10788:1;10777:9;10773:17;10766:47;10830:131;10956:4;10830:131;:::i;:::-;10822:139;;10549:419;;;:::o;10974:224::-;11114:34;11110:1;11102:6;11098:14;11091:58;11183:7;11178:2;11170:6;11166:15;11159:32;10974:224;:::o;11204:366::-;11346:3;11367:67;11431:2;11426:3;11367:67;:::i;:::-;11360:74;;11443:93;11532:3;11443:93;:::i;:::-;11561:2;11556:3;11552:12;11545:19;;11204:366;;;:::o;11576:419::-;11742:4;11780:2;11769:9;11765:18;11757:26;;11829:9;11823:4;11819:20;11815:1;11804:9;11800:17;11793:47;11857:131;11983:4;11857:131;:::i;:::-;11849:139;;11576:419;;;:::o;12001:222::-;12141:34;12137:1;12129:6;12125:14;12118:58;12210:5;12205:2;12197:6;12193:15;12186:30;12001:222;:::o;12229:366::-;12371:3;12392:67;12456:2;12451:3;12392:67;:::i;:::-;12385:74;;12468:93;12557:3;12468:93;:::i;:::-;12586:2;12581:3;12577:12;12570:19;;12229:366;;;:::o;12601:419::-;12767:4;12805:2;12794:9;12790:18;12782:26;;12854:9;12848:4;12844:20;12840:1;12829:9;12825:17;12818:47;12882:131;13008:4;12882:131;:::i;:::-;12874:139;;12601:419;;;:::o;13026:225::-;13166:34;13162:1;13154:6;13150:14;13143:58;13235:8;13230:2;13222:6;13218:15;13211:33;13026:225;:::o;13257:366::-;13399:3;13420:67;13484:2;13479:3;13420:67;:::i;:::-;13413:74;;13496:93;13585:3;13496:93;:::i;:::-;13614:2;13609:3;13605:12;13598:19;;13257:366;;;:::o;13629:419::-;13795:4;13833:2;13822:9;13818:18;13810:26;;13882:9;13876:4;13872:20;13868:1;13857:9;13853:17;13846:47;13910:131;14036:4;13910:131;:::i;:::-;13902:139;;13629:419;;;:::o
Swarm Source
ipfs://c8663614e774ae5bc6f7b70976c19da8265fd798a707f6a92e043fbacacd0eef
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.