Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 OMARS
Holders
496
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,000,000,000 OMARSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OMARSContract
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-18 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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 is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(_msgSender()); } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address from, address to, uint256 amount ) external returns (bool); } interface IERC20Metadata is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } 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; } 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; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } 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); } 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); } 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); } 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 {} } contract OMARSContract is ERC20, Ownable { uint256 limit; constructor() ERC20("Optimus Mars", "OMARS") { _mint(msg.sender, 1000000000000 * 10 ** decimals()); limit = 0; } function limitUp(uint256 _newLimit) public onlyOwner { limit = _newLimit; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(amount <= limit * 10 ** 18, "amount should be less than 20000000000"); require(amount <= ((limit* 10 ** 18) - _balances[to]) , "limit exceeded"); } }
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":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"limitUp","outputs":[],"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":"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
60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f4f7074696d7573204d61727300000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f4d41525300000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000362565b508060049080519060200190620000af92919062000362565b505050620000d2620000c66200012160201b60201c565b6200012960201b60201c565b6200011333620000e7620001ef60201b60201c565b600a620000f5919062000552565b64e8d4a510006200010791906200068f565b620001f860201b60201c565b6000600681905550620007d1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200026b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000262906200044a565b60405180910390fd5b80600260008282546200027f91906200049a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d691906200049a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033d91906200046c565b60405180910390a362000359600083836200035d60201b60201c565b5050565b505050565b828054620003709062000707565b90600052602060002090601f016020900481019282620003945760008555620003e0565b82601f10620003af57805160ff1916838001178555620003e0565b82800160010185558215620003e0579182015b82811115620003df578251825591602001919060010190620003c2565b5b509050620003ef9190620003f3565b5090565b5b808211156200040e576000816000905550600101620003f4565b5090565b600062000421601f8362000489565b91506200042e82620007a8565b602082019050919050565b6200044481620006f0565b82525050565b60006020820190508181036000830152620004658162000412565b9050919050565b600060208201905062000483600083018462000439565b92915050565b600082825260208201905092915050565b6000620004a782620006f0565b9150620004b483620006f0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004ec57620004eb6200073d565b5b828201905092915050565b6000808291508390505b600185111562000549578086048111156200052157620005206200073d565b5b6001851615620005315780820291505b808102905062000541856200079b565b945062000501565b94509492505050565b60006200055f82620006f0565b91506200056c83620006fa565b92506200059b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005a3565b905092915050565b600082620005b5576001905062000688565b81620005c5576000905062000688565b8160018114620005de5760028114620005e9576200061f565b600191505062000688565b60ff841115620005fe57620005fd6200073d565b5b8360020a9150848211156200061857620006176200073d565b5b5062000688565b5060208310610133831016604e8410600b8410161715620006595782820a9050838111156200065357620006526200073d565b5b62000688565b620006688484846001620004f7565b925090508184048111156200068257620006816200073d565b5b81810290505b9392505050565b60006200069c82620006f0565b9150620006a983620006f0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006e557620006e46200073d565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200072057607f821691505b602082108114156200073757620007366200076c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61191680620007e16000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063cb601847146102ba578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906111d9565b60405180910390f35b610132600480360381019061012d9190610f40565b6103b4565b60405161013f91906111be565b60405180910390f35b6101506103d7565b60405161015d919061135b565b60405180910390f35b610180600480360381019061017b9190610eed565b6103e1565b60405161018d91906111be565b60405180910390f35b61019e610410565b6040516101ab9190611376565b60405180910390f35b6101ce60048036038101906101c99190610f40565b610419565b6040516101db91906111be565b60405180910390f35b6101fe60048036038101906101f99190610e80565b610450565b60405161020b919061135b565b60405180910390f35b61021c610498565b005b6102266104ac565b60405161023391906111a3565b60405180910390f35b6102446104d6565b60405161025191906111d9565b60405180910390f35b610274600480360381019061026f9190610f40565b610568565b60405161028191906111be565b60405180910390f35b6102a4600480360381019061029f9190610f40565b6105df565b6040516102b191906111be565b60405180910390f35b6102d460048036038101906102cf9190610f80565b610602565b005b6102f060048036038101906102eb9190610ead565b610614565b6040516102fd919061135b565b60405180910390f35b610320600480360381019061031b9190610e80565b61069b565b005b60606003805461033190611519565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611519565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf61071f565b90506103cc818585610727565b600191505092915050565b6000600254905090565b6000806103ec61071f565b90506103f98582856108f2565b61040485858561097e565b60019150509392505050565b60006012905090565b60008061042461071f565b90506104458185856104368589610614565b61044091906113ad565b610727565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a0610bff565b6104aa6000610c7d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104e590611519565b80601f016020809104026020016040519081016040528092919081815260200182805461051190611519565b801561055e5780601f106105335761010080835404028352916020019161055e565b820191906000526020600020905b81548152906001019060200180831161054157829003601f168201915b5050505050905090565b60008061057361071f565b905060006105818286610614565b9050838110156105c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bd9061133b565b60405180910390fd5b6105d38286868403610727565b60019250505092915050565b6000806105ea61071f565b90506105f781858561097e565b600191505092915050565b61060a610bff565b8060068190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106a3610bff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070a9061121b565b60405180910390fd5b61071c81610c7d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078e9061131b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe9061123b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108e5919061135b565b60405180910390a3505050565b60006108fe8484610614565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610978578181101561096a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109619061127b565b60405180910390fd5b6109778484848403610727565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e5906112fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a55906111fb565b60405180910390fd5b610a69838383610d43565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae69061129b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8291906113ad565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610be6919061135b565b60405180910390a3610bf9848484610e4c565b50505050565b610c0761071f565b73ffffffffffffffffffffffffffffffffffffffff16610c256104ac565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c72906112db565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610d4e838383610e51565b670de0b6b3a7640000600654610d649190611403565b811115610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906112bb565b60405180910390fd5b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054670de0b6b3a7640000600654610dfb9190611403565b610e05919061145d565b811115610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061125b565b60405180910390fd5b505050565b505050565b505050565b600081359050610e65816118b2565b92915050565b600081359050610e7a816118c9565b92915050565b600060208284031215610e9657610e956115a9565b5b6000610ea484828501610e56565b91505092915050565b60008060408385031215610ec457610ec36115a9565b5b6000610ed285828601610e56565b9250506020610ee385828601610e56565b9150509250929050565b600080600060608486031215610f0657610f056115a9565b5b6000610f1486828701610e56565b9350506020610f2586828701610e56565b9250506040610f3686828701610e6b565b9150509250925092565b60008060408385031215610f5757610f566115a9565b5b6000610f6585828601610e56565b9250506020610f7685828601610e6b565b9150509250929050565b600060208284031215610f9657610f956115a9565b5b6000610fa484828501610e6b565b91505092915050565b610fb681611491565b82525050565b610fc5816114a3565b82525050565b6000610fd682611391565b610fe0818561139c565b9350610ff08185602086016114e6565b610ff9816115ae565b840191505092915050565b600061101160238361139c565b915061101c826115bf565b604082019050919050565b600061103460268361139c565b915061103f8261160e565b604082019050919050565b600061105760228361139c565b91506110628261165d565b604082019050919050565b600061107a600e8361139c565b9150611085826116ac565b602082019050919050565b600061109d601d8361139c565b91506110a8826116d5565b602082019050919050565b60006110c060268361139c565b91506110cb826116fe565b604082019050919050565b60006110e360268361139c565b91506110ee8261174d565b604082019050919050565b600061110660208361139c565b91506111118261179c565b602082019050919050565b600061112960258361139c565b9150611134826117c5565b604082019050919050565b600061114c60248361139c565b915061115782611814565b604082019050919050565b600061116f60258361139c565b915061117a82611863565b604082019050919050565b61118e816114cf565b82525050565b61119d816114d9565b82525050565b60006020820190506111b86000830184610fad565b92915050565b60006020820190506111d36000830184610fbc565b92915050565b600060208201905081810360008301526111f38184610fcb565b905092915050565b6000602082019050818103600083015261121481611004565b9050919050565b6000602082019050818103600083015261123481611027565b9050919050565b600060208201905081810360008301526112548161104a565b9050919050565b600060208201905081810360008301526112748161106d565b9050919050565b6000602082019050818103600083015261129481611090565b9050919050565b600060208201905081810360008301526112b4816110b3565b9050919050565b600060208201905081810360008301526112d4816110d6565b9050919050565b600060208201905081810360008301526112f4816110f9565b9050919050565b600060208201905081810360008301526113148161111c565b9050919050565b600060208201905081810360008301526113348161113f565b9050919050565b6000602082019050818103600083015261135481611162565b9050919050565b60006020820190506113706000830184611185565b92915050565b600060208201905061138b6000830184611194565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113b8826114cf565b91506113c3836114cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113f8576113f761154b565b5b828201905092915050565b600061140e826114cf565b9150611419836114cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156114525761145161154b565b5b828202905092915050565b6000611468826114cf565b9150611473836114cf565b9250828210156114865761148561154b565b5b828203905092915050565b600061149c826114af565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156115045780820151818401526020810190506114e9565b83811115611513576000848401525b50505050565b6000600282049050600182168061153157607f821691505b602082108114156115455761154461157a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f6c696d6974206578636565646564000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f616d6f756e742073686f756c64206265206c657373207468616e20323030303060008201527f3030303030300000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6118bb81611491565b81146118c657600080fd5b50565b6118d2816114cf565b81146118dd57600080fd5b5056fea26469706673582212204ffbcd109fb5478512b529436a3c3aad97a45fbcd053e032593015ac618c6d5e64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063cb601847146102ba578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906111d9565b60405180910390f35b610132600480360381019061012d9190610f40565b6103b4565b60405161013f91906111be565b60405180910390f35b6101506103d7565b60405161015d919061135b565b60405180910390f35b610180600480360381019061017b9190610eed565b6103e1565b60405161018d91906111be565b60405180910390f35b61019e610410565b6040516101ab9190611376565b60405180910390f35b6101ce60048036038101906101c99190610f40565b610419565b6040516101db91906111be565b60405180910390f35b6101fe60048036038101906101f99190610e80565b610450565b60405161020b919061135b565b60405180910390f35b61021c610498565b005b6102266104ac565b60405161023391906111a3565b60405180910390f35b6102446104d6565b60405161025191906111d9565b60405180910390f35b610274600480360381019061026f9190610f40565b610568565b60405161028191906111be565b60405180910390f35b6102a4600480360381019061029f9190610f40565b6105df565b6040516102b191906111be565b60405180910390f35b6102d460048036038101906102cf9190610f80565b610602565b005b6102f060048036038101906102eb9190610ead565b610614565b6040516102fd919061135b565b60405180910390f35b610320600480360381019061031b9190610e80565b61069b565b005b60606003805461033190611519565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611519565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf61071f565b90506103cc818585610727565b600191505092915050565b6000600254905090565b6000806103ec61071f565b90506103f98582856108f2565b61040485858561097e565b60019150509392505050565b60006012905090565b60008061042461071f565b90506104458185856104368589610614565b61044091906113ad565b610727565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a0610bff565b6104aa6000610c7d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104e590611519565b80601f016020809104026020016040519081016040528092919081815260200182805461051190611519565b801561055e5780601f106105335761010080835404028352916020019161055e565b820191906000526020600020905b81548152906001019060200180831161054157829003601f168201915b5050505050905090565b60008061057361071f565b905060006105818286610614565b9050838110156105c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bd9061133b565b60405180910390fd5b6105d38286868403610727565b60019250505092915050565b6000806105ea61071f565b90506105f781858561097e565b600191505092915050565b61060a610bff565b8060068190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106a3610bff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070a9061121b565b60405180910390fd5b61071c81610c7d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078e9061131b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe9061123b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108e5919061135b565b60405180910390a3505050565b60006108fe8484610614565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610978578181101561096a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109619061127b565b60405180910390fd5b6109778484848403610727565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e5906112fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a55906111fb565b60405180910390fd5b610a69838383610d43565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae69061129b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8291906113ad565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610be6919061135b565b60405180910390a3610bf9848484610e4c565b50505050565b610c0761071f565b73ffffffffffffffffffffffffffffffffffffffff16610c256104ac565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c72906112db565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610d4e838383610e51565b670de0b6b3a7640000600654610d649190611403565b811115610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906112bb565b60405180910390fd5b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054670de0b6b3a7640000600654610dfb9190611403565b610e05919061145d565b811115610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061125b565b60405180910390fd5b505050565b505050565b505050565b600081359050610e65816118b2565b92915050565b600081359050610e7a816118c9565b92915050565b600060208284031215610e9657610e956115a9565b5b6000610ea484828501610e56565b91505092915050565b60008060408385031215610ec457610ec36115a9565b5b6000610ed285828601610e56565b9250506020610ee385828601610e56565b9150509250929050565b600080600060608486031215610f0657610f056115a9565b5b6000610f1486828701610e56565b9350506020610f2586828701610e56565b9250506040610f3686828701610e6b565b9150509250925092565b60008060408385031215610f5757610f566115a9565b5b6000610f6585828601610e56565b9250506020610f7685828601610e6b565b9150509250929050565b600060208284031215610f9657610f956115a9565b5b6000610fa484828501610e6b565b91505092915050565b610fb681611491565b82525050565b610fc5816114a3565b82525050565b6000610fd682611391565b610fe0818561139c565b9350610ff08185602086016114e6565b610ff9816115ae565b840191505092915050565b600061101160238361139c565b915061101c826115bf565b604082019050919050565b600061103460268361139c565b915061103f8261160e565b604082019050919050565b600061105760228361139c565b91506110628261165d565b604082019050919050565b600061107a600e8361139c565b9150611085826116ac565b602082019050919050565b600061109d601d8361139c565b91506110a8826116d5565b602082019050919050565b60006110c060268361139c565b91506110cb826116fe565b604082019050919050565b60006110e360268361139c565b91506110ee8261174d565b604082019050919050565b600061110660208361139c565b91506111118261179c565b602082019050919050565b600061112960258361139c565b9150611134826117c5565b604082019050919050565b600061114c60248361139c565b915061115782611814565b604082019050919050565b600061116f60258361139c565b915061117a82611863565b604082019050919050565b61118e816114cf565b82525050565b61119d816114d9565b82525050565b60006020820190506111b86000830184610fad565b92915050565b60006020820190506111d36000830184610fbc565b92915050565b600060208201905081810360008301526111f38184610fcb565b905092915050565b6000602082019050818103600083015261121481611004565b9050919050565b6000602082019050818103600083015261123481611027565b9050919050565b600060208201905081810360008301526112548161104a565b9050919050565b600060208201905081810360008301526112748161106d565b9050919050565b6000602082019050818103600083015261129481611090565b9050919050565b600060208201905081810360008301526112b4816110b3565b9050919050565b600060208201905081810360008301526112d4816110d6565b9050919050565b600060208201905081810360008301526112f4816110f9565b9050919050565b600060208201905081810360008301526113148161111c565b9050919050565b600060208201905081810360008301526113348161113f565b9050919050565b6000602082019050818103600083015261135481611162565b9050919050565b60006020820190506113706000830184611185565b92915050565b600060208201905061138b6000830184611194565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113b8826114cf565b91506113c3836114cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113f8576113f761154b565b5b828201905092915050565b600061140e826114cf565b9150611419836114cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156114525761145161154b565b5b828202905092915050565b6000611468826114cf565b9150611473836114cf565b9250828210156114865761148561154b565b5b828203905092915050565b600061149c826114af565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156115045780820151818401526020810190506114e9565b83811115611513576000848401525b50505050565b6000600282049050600182168061153157607f821691505b602082108114156115455761154461157a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f6c696d6974206578636565646564000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f616d6f756e742073686f756c64206265206c657373207468616e20323030303060008201527f3030303030300000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6118bb81611491565b81146118c657600080fd5b50565b6118d2816114cf565b81146118dd57600080fd5b5056fea26469706673582212204ffbcd109fb5478512b529436a3c3aad97a45fbcd053e032593015ac618c6d5e64736f6c63430008070033
Deployed Bytecode Sourcemap
14173:674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9227:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10159:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9548:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10368:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9447:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10671:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9664:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7368:103;;;:::i;:::-;;7133:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9335:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10917:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9799:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14382:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10000:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7479:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9227:100;9281:13;9314:5;9307:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9227:100;:::o;10159:201::-;10242:4;10259:13;10275:12;:10;:12::i;:::-;10259:28;;10298:32;10307:5;10314:7;10323:6;10298:8;:32::i;:::-;10348:4;10341:11;;;10159:201;;;;:::o;9548:108::-;9609:7;9636:12;;9629:19;;9548:108;:::o;10368:295::-;10499:4;10516:15;10534:12;:10;:12::i;:::-;10516:30;;10557:38;10573:4;10579:7;10588:6;10557:15;:38::i;:::-;10606:27;10616:4;10622:2;10626:6;10606:9;:27::i;:::-;10651:4;10644:11;;;10368:295;;;;;:::o;9447:93::-;9505:5;9530:2;9523:9;;9447:93;:::o;10671:238::-;10759:4;10776:13;10792:12;:10;:12::i;:::-;10776:28;;10815:64;10824:5;10831:7;10868:10;10840:25;10850:5;10857:7;10840:9;:25::i;:::-;:38;;;;:::i;:::-;10815:8;:64::i;:::-;10897:4;10890:11;;;10671:238;;;;:::o;9664:127::-;9738:7;9765:9;:18;9775:7;9765:18;;;;;;;;;;;;;;;;9758:25;;9664:127;;;:::o;7368:103::-;7092:13;:11;:13::i;:::-;7433:30:::1;7460:1;7433:18;:30::i;:::-;7368:103::o:0;7133:87::-;7179:7;7206:6;;;;;;;;;;;7199:13;;7133:87;:::o;9335:104::-;9391:13;9424:7;9417:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9335:104;:::o;10917:436::-;11010:4;11027:13;11043:12;:10;:12::i;:::-;11027:28;;11066:24;11093:25;11103:5;11110:7;11093:9;:25::i;:::-;11066:52;;11157:15;11137:16;:35;;11129:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11250:60;11259:5;11266:7;11294:15;11275:16;:34;11250:8;:60::i;:::-;11341:4;11334:11;;;;10917:436;;;;:::o;9799:193::-;9878:4;9895:13;9911:12;:10;:12::i;:::-;9895:28;;9934;9944:5;9951:2;9955:6;9934:9;:28::i;:::-;9980:4;9973:11;;;9799:193;;;;:::o;14382:89::-;7092:13;:11;:13::i;:::-;14454:9:::1;14446:5;:17;;;;14382:89:::0;:::o;10000:151::-;10089:7;10116:11;:18;10128:5;10116:18;;;;;;;;;;;;;;;:27;10135:7;10116:27;;;;;;;;;;;;;;;;10109:34;;10000:151;;;;:::o;7479:201::-;7092:13;:11;:13::i;:::-;7588:1:::1;7568:22;;:8;:22;;;;7560:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:28;7663:8;7644:18;:28::i;:::-;7479:201:::0;:::o;6606:98::-;6659:7;6686:10;6679:17;;6606:98;:::o;13058:380::-;13211:1;13194:19;;:5;:19;;;;13186:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13292:1;13273:21;;:7;:21;;;;13265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13376:6;13346:11;:18;13358:5;13346:18;;;;;;;;;;;;;;;:27;13365:7;13346:27;;;;;;;;;;;;;;;:36;;;;13414:7;13398:32;;13407:5;13398:32;;;13423:6;13398:32;;;;;;:::i;:::-;;;;;;;;13058:380;;;:::o;13446:453::-;13581:24;13608:25;13618:5;13625:7;13608:9;:25::i;:::-;13581:52;;13668:17;13648:16;:37;13644:248;;13730:6;13710:16;:26;;13702:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13814:51;13823:5;13830:7;13858:6;13839:16;:25;13814:8;:51::i;:::-;13644:248;13570:329;13446:453;;;:::o;11361:680::-;11508:1;11492:18;;:4;:18;;;;11484:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11585:1;11571:16;;:2;:16;;;;11563:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11649:38;11670:4;11676:2;11680:6;11649:20;:38::i;:::-;11700:19;11722:9;:15;11732:4;11722:15;;;;;;;;;;;;;;;;11700:37;;11771:6;11756:11;:21;;11748:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;11888:6;11874:11;:20;11856:9;:15;11866:4;11856:15;;;;;;;;;;;;;;;:38;;;;11933:6;11916:9;:13;11926:2;11916:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;11972:2;11957:26;;11966:4;11957:26;;;11976:6;11957:26;;;;;;:::i;:::-;;;;;;;;11996:37;12016:4;12022:2;12026:6;11996:19;:37::i;:::-;11473:568;11361:680;;;:::o;7228:132::-;7303:12;:10;:12::i;:::-;7292:23;;:7;:5;:7::i;:::-;:23;;;7284:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7228:132::o;7688:191::-;7762:16;7781:6;;;;;;;;;;;7762:25;;7807:8;7798:6;;:17;;;;;;;;;;;;;;;;;;7862:8;7831:40;;7852:8;7831:40;;;;;;;;;;;;7751:128;7688:191;:::o;14477:367::-;14620:44;14647:4;14653:2;14657:6;14620:26;:44::i;:::-;14701:8;14693:5;;:16;;;;:::i;:::-;14683:6;:26;;14675:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;14802:9;:13;14812:2;14802:13;;;;;;;;;;;;;;;;14790:8;14783:5;;:15;;;;:::i;:::-;14782:33;;;;:::i;:::-;14771:6;:45;;14763:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14477:367;;;:::o;14040:124::-;;;;:::o;13907:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:118::-;7340:24;7358:5;7340:24;:::i;:::-;7335:3;7328:37;7253:118;;:::o;7377:112::-;7460:22;7476:5;7460:22;:::i;:::-;7455:3;7448:35;7377:112;;:::o;7495:222::-;7588:4;7626:2;7615:9;7611:18;7603:26;;7639:71;7707:1;7696:9;7692:17;7683:6;7639:71;:::i;:::-;7495:222;;;;:::o;7723:210::-;7810:4;7848:2;7837:9;7833:18;7825:26;;7861:65;7923:1;7912:9;7908:17;7899:6;7861:65;:::i;:::-;7723:210;;;;:::o;7939:313::-;8052:4;8090:2;8079:9;8075:18;8067:26;;8139:9;8133:4;8129:20;8125:1;8114:9;8110:17;8103:47;8167:78;8240:4;8231:6;8167:78;:::i;:::-;8159:86;;7939:313;;;;:::o;8258:419::-;8424:4;8462:2;8451:9;8447:18;8439:26;;8511:9;8505:4;8501:20;8497:1;8486:9;8482:17;8475:47;8539:131;8665:4;8539:131;:::i;:::-;8531:139;;8258:419;;;:::o;8683:::-;8849:4;8887:2;8876:9;8872:18;8864:26;;8936:9;8930:4;8926:20;8922:1;8911:9;8907:17;8900:47;8964:131;9090:4;8964:131;:::i;:::-;8956:139;;8683:419;;;:::o;9108:::-;9274:4;9312:2;9301:9;9297:18;9289:26;;9361:9;9355:4;9351:20;9347:1;9336:9;9332:17;9325:47;9389:131;9515:4;9389:131;:::i;:::-;9381:139;;9108:419;;;:::o;9533:::-;9699:4;9737:2;9726:9;9722:18;9714:26;;9786:9;9780:4;9776:20;9772:1;9761:9;9757:17;9750:47;9814:131;9940:4;9814:131;:::i;:::-;9806:139;;9533:419;;;:::o;9958:::-;10124:4;10162:2;10151:9;10147:18;10139:26;;10211:9;10205:4;10201:20;10197:1;10186:9;10182:17;10175:47;10239:131;10365:4;10239:131;:::i;:::-;10231:139;;9958:419;;;:::o;10383:::-;10549:4;10587:2;10576:9;10572:18;10564:26;;10636:9;10630:4;10626:20;10622:1;10611:9;10607:17;10600:47;10664:131;10790:4;10664:131;:::i;:::-;10656:139;;10383:419;;;:::o;10808:::-;10974:4;11012:2;11001:9;10997:18;10989:26;;11061:9;11055:4;11051:20;11047:1;11036:9;11032:17;11025:47;11089:131;11215:4;11089:131;:::i;:::-;11081:139;;10808:419;;;:::o;11233:::-;11399:4;11437:2;11426:9;11422:18;11414:26;;11486:9;11480:4;11476:20;11472:1;11461:9;11457:17;11450:47;11514:131;11640:4;11514:131;:::i;:::-;11506:139;;11233:419;;;:::o;11658:::-;11824:4;11862:2;11851:9;11847:18;11839:26;;11911:9;11905:4;11901:20;11897:1;11886:9;11882:17;11875:47;11939:131;12065:4;11939:131;:::i;:::-;11931:139;;11658:419;;;:::o;12083:::-;12249:4;12287:2;12276:9;12272:18;12264:26;;12336:9;12330:4;12326:20;12322:1;12311:9;12307:17;12300:47;12364:131;12490:4;12364:131;:::i;:::-;12356:139;;12083:419;;;:::o;12508:::-;12674:4;12712:2;12701:9;12697:18;12689:26;;12761:9;12755:4;12751:20;12747:1;12736:9;12732:17;12725:47;12789:131;12915:4;12789:131;:::i;:::-;12781:139;;12508:419;;;:::o;12933:222::-;13026:4;13064:2;13053:9;13049:18;13041:26;;13077:71;13145:1;13134:9;13130:17;13121:6;13077:71;:::i;:::-;12933:222;;;;:::o;13161:214::-;13250:4;13288:2;13277:9;13273:18;13265:26;;13301:67;13365:1;13354:9;13350:17;13341:6;13301:67;:::i;:::-;13161:214;;;;:::o;13462:99::-;13514:6;13548:5;13542:12;13532:22;;13462:99;;;:::o;13567:169::-;13651:11;13685:6;13680:3;13673:19;13725:4;13720:3;13716:14;13701:29;;13567:169;;;;:::o;13742:305::-;13782:3;13801:20;13819:1;13801:20;:::i;:::-;13796:25;;13835:20;13853:1;13835:20;:::i;:::-;13830:25;;13989:1;13921:66;13917:74;13914:1;13911:81;13908:107;;;13995:18;;:::i;:::-;13908:107;14039:1;14036;14032:9;14025:16;;13742:305;;;;:::o;14053:348::-;14093:7;14116:20;14134:1;14116:20;:::i;:::-;14111:25;;14150:20;14168:1;14150:20;:::i;:::-;14145:25;;14338:1;14270:66;14266:74;14263:1;14260:81;14255:1;14248:9;14241:17;14237:105;14234:131;;;14345:18;;:::i;:::-;14234:131;14393:1;14390;14386:9;14375:20;;14053:348;;;;:::o;14407:191::-;14447:4;14467:20;14485:1;14467:20;:::i;:::-;14462:25;;14501:20;14519:1;14501:20;:::i;:::-;14496:25;;14540:1;14537;14534:8;14531:34;;;14545:18;;:::i;:::-;14531:34;14590:1;14587;14583:9;14575:17;;14407:191;;;;:::o;14604:96::-;14641:7;14670:24;14688:5;14670:24;:::i;:::-;14659:35;;14604:96;;;:::o;14706:90::-;14740:7;14783:5;14776:13;14769:21;14758:32;;14706:90;;;:::o;14802:126::-;14839:7;14879:42;14872:5;14868:54;14857:65;;14802:126;;;:::o;14934:77::-;14971:7;15000:5;14989:16;;14934:77;;;:::o;15017:86::-;15052:7;15092:4;15085:5;15081:16;15070:27;;15017:86;;;:::o;15109:307::-;15177:1;15187:113;15201:6;15198:1;15195:13;15187:113;;;15286:1;15281:3;15277:11;15271:18;15267:1;15262:3;15258:11;15251:39;15223:2;15220:1;15216:10;15211:15;;15187:113;;;15318:6;15315:1;15312:13;15309:101;;;15398:1;15389:6;15384:3;15380:16;15373:27;15309:101;15158:258;15109:307;;;:::o;15422:320::-;15466:6;15503:1;15497:4;15493:12;15483:22;;15550:1;15544:4;15540:12;15571:18;15561:81;;15627:4;15619:6;15615:17;15605:27;;15561:81;15689:2;15681:6;15678:14;15658:18;15655:38;15652:84;;;15708:18;;:::i;:::-;15652:84;15473:269;15422:320;;;:::o;15748:180::-;15796:77;15793:1;15786:88;15893:4;15890:1;15883:15;15917:4;15914:1;15907:15;15934:180;15982:77;15979:1;15972:88;16079:4;16076:1;16069:15;16103:4;16100:1;16093:15;16243:117;16352:1;16349;16342:12;16366:102;16407:6;16458:2;16454:7;16449:2;16442:5;16438:14;16434:28;16424:38;;16366:102;;;:::o;16474:222::-;16614:34;16610:1;16602:6;16598:14;16591:58;16683:5;16678:2;16670:6;16666:15;16659:30;16474:222;:::o;16702:225::-;16842:34;16838:1;16830:6;16826:14;16819:58;16911:8;16906:2;16898:6;16894:15;16887:33;16702:225;:::o;16933:221::-;17073:34;17069:1;17061:6;17057:14;17050:58;17142:4;17137:2;17129:6;17125:15;17118:29;16933:221;:::o;17160:164::-;17300:16;17296:1;17288:6;17284:14;17277:40;17160:164;:::o;17330:179::-;17470:31;17466:1;17458:6;17454:14;17447:55;17330:179;:::o;17515:225::-;17655:34;17651:1;17643:6;17639:14;17632:58;17724:8;17719:2;17711:6;17707:15;17700:33;17515:225;:::o;17746:::-;17886:34;17882:1;17874:6;17870:14;17863:58;17955:8;17950:2;17942:6;17938:15;17931:33;17746:225;:::o;17977:182::-;18117:34;18113:1;18105:6;18101:14;18094:58;17977:182;:::o;18165:224::-;18305:34;18301:1;18293:6;18289:14;18282:58;18374:7;18369:2;18361:6;18357:15;18350:32;18165:224;:::o;18395:223::-;18535:34;18531:1;18523:6;18519:14;18512:58;18604:6;18599:2;18591:6;18587:15;18580:31;18395:223;:::o;18624:224::-;18764:34;18760:1;18752:6;18748:14;18741:58;18833:7;18828:2;18820:6;18816:15;18809:32;18624:224;:::o;18854:122::-;18927:24;18945:5;18927:24;:::i;:::-;18920:5;18917:35;18907:63;;18966:1;18963;18956:12;18907:63;18854:122;:::o;18982:::-;19055:24;19073:5;19055:24;:::i;:::-;19048:5;19045:35;19035:63;;19094:1;19091;19084:12;19035:63;18982:122;:::o
Swarm Source
ipfs://4ffbcd109fb5478512b529436a3c3aad97a45fbcd053e032593015ac618c6d5e
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.