Overview
Max Total Supply
441,700,805,447.231397766276003016 ORDR
Holders
287 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,419,547,205.425145910367804193 ORDRValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheRedOrder
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-16 */ // File: openzeppelin-contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-contracts/GSN/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: openzeppelin-contracts/math/SafeMath.sol pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations. */ library SafeMath { /** * @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. Reverts 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), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } } // File: openzeppelin-contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/TheRedOrder.sol pragma solidity ^0.8.0; contract TheRedOrder is Context, Ownable, IERC20 { using SafeMath for uint256; // holds the balances of everyone who owes tokens of this contract mapping (address => uint256) private _balances; // holds the amount authorized by address mapping (address => mapping (address => uint256)) private _allowances; string private _name = "TheRedOrder"; string private _symbol = "ORDR"; // 18 decimal contract uint8 private _decimals = 18; // 1 trillion * decimal count uint256 private _totalSupply = 500000 * 10**6 * 10**18; address private _marketingWallet = 0xcdcacbAc38785E462dAe096b55a86A05419A060a; // send total supply to the address that has created the contract constructor () { _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } // return name of the token function name() public view virtual returns (string memory) { return _name; } // return symbol of the token function symbol() public view virtual returns (string memory) { return _symbol; } // return decimals of token function decimals() public view virtual returns (uint8) { return _decimals; } // return amount in supply function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } // return the balance of tokens from the address passed in function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } // transfers amount from the person calling the function to // the address called [@param 1] in the amount specified [@param 2] function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } // returns the amount authorized by one account [@param 1] to allow account 2 [@aram2] to spend function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } // approves the person who calles this function to allow another address [@param1] to spend the // amount specified [@param2] function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } // transferes from account 1 [@param1] to account 2 [@param 2] the designated amount [@param 3] // requires the person calling the function has at least the amount of the transfer authorized for them to send function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); uint256 newAllowance = currentAllowance.sub(amount); _approve(sender, _msgSender(), newAllowance); return true; } // the person calling this function INCREASES the allowance of the address called [@param1] can spend // on their belave by the amount send [@param2] function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { uint256 newAllowance = _allowances[_msgSender()][spender].add(addedValue); _approve(_msgSender(), spender, newAllowance); return true; } // the person calling this function DECREASED the allowance of the address called [@param1] can spend // on their belave by the amount send [@param2] function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); uint256 newAllowance = currentAllowance.sub(subtractedValue); _approve(_msgSender(), spender, newAllowance); return true; } // performs a transfer from address 1 [@param2] to address 2 [@param 2] in the amount // that is specified [@param 3]. Fees in the total amount of 12% are deducted. 2% goes // into a marketing walled, 2% is removed from total supply, 8% goes to liquidity wallet function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); // amount to send to the marketing wallet (2%) uint256 marketingFee = amount.mul(2).div(100); // amount to burn of the total supply (2%) uint256 burnFee = amount.mul(2).div(100); // amount to send into pool (2%) uint256 liquidityFee = amount.mul(2).div(100); // declare the amount the sender has in their account uint256 senderBalance = _balances[sender]; // declare amount that actually gets transfered after burn, liquidity, and marketing fees uint256 totalTransfer = amount.sub(marketingFee); totalTransfer = totalTransfer.sub(burnFee); totalTransfer = totalTransfer.sub(liquidityFee); _beforeTokenTransfer(sender, recipient, amount); // require that the balaner of the person this transfer is coming from has the funds require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); // reduce the full amount from the sender's balance _balances[sender] -= amount; // add the after fees amount to the recipeint _balances[recipient] += totalTransfer; // add the balance to the marketing wallet _balances[_marketingWallet] += marketingFee; // add the burn balance to address 0 _balances[address(0)] += burnFee; // send taxed amount to the contract _balances[owner()] += liquidityFee; // subtract burn fee from total supply _totalSupply = _totalSupply.sub(burnFee); // transfer the after fee amount to the recipient emit Transfer(sender, recipient, totalTransfer); // transfer the marketing percent to the marketing wallet emit Transfer(sender, _marketingWallet, marketingFee); // transfer the burn fee to the 0 address emit Transfer(sender, address(0), burnFee); // send the tax amount to the liquidity wallet emit Transfer(sender, owner(), liquidityFee); } // no need to check for balance here, _transfer function checks to see if the amount // being transfered is >= to the balance of the person sending the tokens 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 _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052600b60808190526a2a3432a932b227b93232b960a91b60a09081526200002e91600391906200015d565b506040805180820190915260048082526327a9222960e11b60209092019182526200005a91816200015d565b506005805460ff191660121790556c064f964e68233a76f520000000600655600780546001600160a01b03191673cdcacbac38785e462dae096b55a86a05419a060a179055348015620000ac57600080fd5b506000620000b962000159565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006543360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916200014b9162000203565b60405180910390a362000249565b3390565b8280546200016b906200020c565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b90815260200190565b6002810460018216806200022157607f821691505b602082108114156200024357634e487b7160e01b600052602260045260246000fd5b50919050565b610ebe80620002596000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b6040516101049190610ae3565b60405180910390f35b61012061011b366004610a9b565b610295565b6040516101049190610ad8565b6101356102b2565b6040516101049190610d92565b610120610150366004610a60565b6102b8565b61015d61035e565b6040516101049190610d9b565b610120610178366004610a9b565b610367565b61013561018b366004610a14565b6103c8565b6101986103e7565b005b6101a2610466565b6040516101049190610ac4565b6100f7610475565b6101206101c5366004610a9b565b610484565b6101206101d8366004610a9b565b61050a565b6101356101eb366004610a2e565b61051e565b6101986101fe366004610a14565b610549565b60606003805461021290610e17565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610e17565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b60006102a96102a26105ff565b8484610603565b50600192915050565b60065490565b60006102c58484846106b7565b6001600160a01b0384166000908152600260205260408120816102e66105ff565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103325760405162461bcd60e51b815260040161032990610c47565b60405180910390fd5b600061033e82856109c1565b90506103528661034c6105ff565b83610603565b50600195945050505050565b60055460ff1690565b6000806103aa836002600061037a6105ff565b6001600160a01b03908116825260208083019390935260409182016000908120918a1681529252902054906109d4565b90506103be6103b76105ff565b8583610603565b5060019392505050565b6001600160a01b0381166000908152600160205260409020545b919050565b6103ef6105ff565b6000546001600160a01b0390811691161461041c5760405162461bcd60e51b815260040161032990610c8f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60606004805461021290610e17565b600080600260006104936105ff565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104df5760405162461bcd60e51b815260040161032990610d4d565b60006104eb82856109c1565b90506104ff6104f86105ff565b8683610603565b506001949350505050565b60006102a96105176105ff565b84846106b7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105516105ff565b6000546001600160a01b0390811691161461057e5760405162461bcd60e51b815260040161032990610c8f565b6001600160a01b0381166105a45760405162461bcd60e51b815260040161032990610b79565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166106295760405162461bcd60e51b815260040161032990610d09565b6001600160a01b03821661064f5760405162461bcd60e51b815260040161032990610bbf565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106aa908590610d92565b60405180910390a3505050565b6001600160a01b0383166106dd5760405162461bcd60e51b815260040161032990610cc4565b6001600160a01b0382166107035760405162461bcd60e51b815260040161032990610b36565b600061071b60646107158460026109e0565b906109ec565b9050600061072f60646107158560026109e0565b9050600061074360646107158660026109e0565b6001600160a01b03871660009081526001602052604081205491925061076986866109c1565b905061077581856109c1565b905061078181846109c1565b905061078e8888886109f8565b858210156107ae5760405162461bcd60e51b815260040161032990610c01565b6001600160a01b038816600090815260016020526040812080548892906107d6908490610e00565b90915550506001600160a01b03871660009081526001602052604081208054839290610803908490610da9565b90915550506007546001600160a01b031660009081526001602052604081208054879290610832908490610da9565b9091555050600080805260016020527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb498054869290610872908490610da9565b9091555083905060016000610885610466565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546108b49190610da9565b90915550506006546108c690856109c1565b600681905550866001600160a01b0316886001600160a01b0316600080516020610e69833981519152836040516108fd9190610d92565b60405180910390a36007546040516001600160a01b03918216918a1690600080516020610e6983398151915290610935908990610d92565b60405180910390a360006001600160a01b0316886001600160a01b0316600080516020610e698339815191528660405161096f9190610d92565b60405180910390a361097f610466565b6001600160a01b0316886001600160a01b0316600080516020610e69833981519152856040516109af9190610d92565b60405180910390a35050505050505050565b60006109cd8284610e00565b9392505050565b60006109cd8284610da9565b60006109cd8284610de1565b60006109cd8284610dc1565b505050565b80356001600160a01b03811681146103e257600080fd5b600060208284031215610a25578081fd5b6109cd826109fd565b60008060408385031215610a40578081fd5b610a49836109fd565b9150610a57602084016109fd565b90509250929050565b600080600060608486031215610a74578081fd5b610a7d846109fd565b9250610a8b602085016109fd565b9150604084013590509250925092565b60008060408385031215610aad578182fd5b610ab6836109fd565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b0f57858101830151858201604001528201610af3565b81811115610b205783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610dbc57610dbc610e52565b500190565b600082610ddc57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610dfb57610dfb610e52565b500290565b600082821015610e1257610e12610e52565b500390565b600281046001821680610e2b57607f821691505b60208210811415610e4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e89aea4b0e9838459221cf440f8203b3acdfe77f8ede96b33a83bd68f73e9cd064736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b6040516101049190610ae3565b60405180910390f35b61012061011b366004610a9b565b610295565b6040516101049190610ad8565b6101356102b2565b6040516101049190610d92565b610120610150366004610a60565b6102b8565b61015d61035e565b6040516101049190610d9b565b610120610178366004610a9b565b610367565b61013561018b366004610a14565b6103c8565b6101986103e7565b005b6101a2610466565b6040516101049190610ac4565b6100f7610475565b6101206101c5366004610a9b565b610484565b6101206101d8366004610a9b565b61050a565b6101356101eb366004610a2e565b61051e565b6101986101fe366004610a14565b610549565b60606003805461021290610e17565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610e17565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b60006102a96102a26105ff565b8484610603565b50600192915050565b60065490565b60006102c58484846106b7565b6001600160a01b0384166000908152600260205260408120816102e66105ff565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103325760405162461bcd60e51b815260040161032990610c47565b60405180910390fd5b600061033e82856109c1565b90506103528661034c6105ff565b83610603565b50600195945050505050565b60055460ff1690565b6000806103aa836002600061037a6105ff565b6001600160a01b03908116825260208083019390935260409182016000908120918a1681529252902054906109d4565b90506103be6103b76105ff565b8583610603565b5060019392505050565b6001600160a01b0381166000908152600160205260409020545b919050565b6103ef6105ff565b6000546001600160a01b0390811691161461041c5760405162461bcd60e51b815260040161032990610c8f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60606004805461021290610e17565b600080600260006104936105ff565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104df5760405162461bcd60e51b815260040161032990610d4d565b60006104eb82856109c1565b90506104ff6104f86105ff565b8683610603565b506001949350505050565b60006102a96105176105ff565b84846106b7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105516105ff565b6000546001600160a01b0390811691161461057e5760405162461bcd60e51b815260040161032990610c8f565b6001600160a01b0381166105a45760405162461bcd60e51b815260040161032990610b79565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166106295760405162461bcd60e51b815260040161032990610d09565b6001600160a01b03821661064f5760405162461bcd60e51b815260040161032990610bbf565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106aa908590610d92565b60405180910390a3505050565b6001600160a01b0383166106dd5760405162461bcd60e51b815260040161032990610cc4565b6001600160a01b0382166107035760405162461bcd60e51b815260040161032990610b36565b600061071b60646107158460026109e0565b906109ec565b9050600061072f60646107158560026109e0565b9050600061074360646107158660026109e0565b6001600160a01b03871660009081526001602052604081205491925061076986866109c1565b905061077581856109c1565b905061078181846109c1565b905061078e8888886109f8565b858210156107ae5760405162461bcd60e51b815260040161032990610c01565b6001600160a01b038816600090815260016020526040812080548892906107d6908490610e00565b90915550506001600160a01b03871660009081526001602052604081208054839290610803908490610da9565b90915550506007546001600160a01b031660009081526001602052604081208054879290610832908490610da9565b9091555050600080805260016020527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb498054869290610872908490610da9565b9091555083905060016000610885610466565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546108b49190610da9565b90915550506006546108c690856109c1565b600681905550866001600160a01b0316886001600160a01b0316600080516020610e69833981519152836040516108fd9190610d92565b60405180910390a36007546040516001600160a01b03918216918a1690600080516020610e6983398151915290610935908990610d92565b60405180910390a360006001600160a01b0316886001600160a01b0316600080516020610e698339815191528660405161096f9190610d92565b60405180910390a361097f610466565b6001600160a01b0316886001600160a01b0316600080516020610e69833981519152856040516109af9190610d92565b60405180910390a35050505050505050565b60006109cd8284610e00565b9392505050565b60006109cd8284610da9565b60006109cd8284610de1565b60006109cd8284610dc1565b505050565b80356001600160a01b03811681146103e257600080fd5b600060208284031215610a25578081fd5b6109cd826109fd565b60008060408385031215610a40578081fd5b610a49836109fd565b9150610a57602084016109fd565b90509250929050565b600080600060608486031215610a74578081fd5b610a7d846109fd565b9250610a8b602085016109fd565b9150604084013590509250925092565b60008060408385031215610aad578182fd5b610ab6836109fd565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b0f57858101830151858201604001528201610af3565b81811115610b205783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610dbc57610dbc610e52565b500190565b600082610ddc57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610dfb57610dfb610e52565b500290565b600082821015610e1257610e12610e52565b500390565b600281046001821680610e2b57607f821691505b60208210811415610e4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e89aea4b0e9838459221cf440f8203b3acdfe77f8ede96b33a83bd68f73e9cd064736f6c63430008000033
Deployed Bytecode Sourcemap
8201:7538:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9168:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10604:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9569:108::-;;;:::i;:::-;;;;;;;:::i;10999:481::-;;;;;;:::i;:::-;;:::i;9438:91::-;;;:::i;:::-;;;;;;;:::i;11648:264::-;;;;;;:::i;:::-;;:::i;9749:127::-;;;;;;:::i;:::-;;:::i;7574:148::-;;;:::i;:::-;;6932:79;;;:::i;:::-;;;;;;;:::i;9302:95::-;;;:::i;12080:428::-;;;;;;:::i;:::-;;:::i;10023:175::-;;;;;;:::i;:::-;;:::i;10308:151::-;;;;;;:::i;:::-;;:::i;7877:244::-;;;;;;:::i;:::-;;:::i;9168:91::-;9213:13;9246:5;9239:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9168:91;:::o;10604:169::-;10687:4;10704:39;10713:12;:10;:12::i;:::-;10727:7;10736:6;10704:8;:39::i;:::-;-1:-1:-1;10761:4:0;10604:169;;;;:::o;9569:108::-;9657:12;;9569:108;:::o;10999:481::-;11105:4;11122:36;11132:6;11140:9;11151:6;11122:9;:36::i;:::-;-1:-1:-1;;;;;11198:19:0;;11171:24;11198:19;;;:11;:19;;;;;11171:24;11218:12;:10;:12::i;:::-;-1:-1:-1;;;;;11198:33:0;-1:-1:-1;;;;;11198:33:0;;;;;;;;;;;;;11171:60;;11270:6;11250:16;:26;;11242:79;;;;-1:-1:-1;;;11242:79:0;;;;;;;:::i;:::-;;;;;;;;;11342:20;11365:28;:16;11386:6;11365:20;:28::i;:::-;11342:51;;11404:44;11413:6;11421:12;:10;:12::i;:::-;11435;11404:8;:44::i;:::-;-1:-1:-1;11468:4:0;;10999:481;-1:-1:-1;;;;;10999:481:0:o;9438:91::-;9512:9;;;;9438:91;:::o;11648:264::-;11736:4;11753:20;11776:50;11815:10;11776:11;:25;11788:12;:10;:12::i;:::-;-1:-1:-1;;;;;11776:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11776:25:0;;;:34;;;;;;;;;;;:38;:50::i;:::-;11753:73;;11837:45;11846:12;:10;:12::i;:::-;11860:7;11869:12;11837:8;:45::i;:::-;-1:-1:-1;11900:4:0;;11648:264;-1:-1:-1;;;11648:264:0:o;9749:127::-;-1:-1:-1;;;;;9850:18:0;;9823:7;9850:18;;;:9;:18;;;;;;9749:127;;;;:::o;7574:148::-;7154:12;:10;:12::i;:::-;7144:6;;-1:-1:-1;;;;;7144:6:0;;;:22;;;7136:67;;;;-1:-1:-1;;;7136:67:0;;;;;;;:::i;:::-;7681:1:::1;7665:6:::0;;7644:40:::1;::::0;-1:-1:-1;;;;;7665:6:0;;::::1;::::0;7644:40:::1;::::0;7681:1;;7644:40:::1;7712:1;7695:19:::0;;-1:-1:-1;;;;;;7695:19:0::1;::::0;;7574:148::o;6932:79::-;6970:7;6997:6;-1:-1:-1;;;;;6997:6:0;6932:79;:::o;9302:95::-;9349:13;9382:7;9375:14;;;;;:::i;12080:428::-;12173:4;12190:24;12217:11;:25;12229:12;:10;:12::i;:::-;-1:-1:-1;;;;;12217:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12217:25:0;;;:34;;;;;;;;;;;-1:-1:-1;12270:35:0;;;;12262:85;;;;-1:-1:-1;;;12262:85:0;;;;;;;:::i;:::-;12360:20;12383:37;:16;12404:15;12383:20;:37::i;:::-;12360:60;;12431:45;12440:12;:10;:12::i;:::-;12454:7;12463:12;12431:8;:45::i;:::-;-1:-1:-1;12496:4:0;;12080:428;-1:-1:-1;;;;12080:428:0:o;10023:175::-;10109:4;10126:42;10136:12;:10;:12::i;:::-;10150:9;10161:6;10126:9;:42::i;10308:151::-;-1:-1:-1;;;;;10424:18:0;;;10397:7;10424:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10308:151::o;7877:244::-;7154:12;:10;:12::i;:::-;7144:6;;-1:-1:-1;;;;;7144:6:0;;;:22;;;7136:67;;;;-1:-1:-1;;;7136:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7966:22:0;::::1;7958:73;;;;-1:-1:-1::0;;;7958:73:0::1;;;;;;;:::i;:::-;8068:6;::::0;;8047:38:::1;::::0;-1:-1:-1;;;;;8047:38:0;;::::1;::::0;8068:6;::::1;::::0;8047:38:::1;::::0;::::1;8096:6;:17:::0;;-1:-1:-1;;;;;;8096:17:0::1;-1:-1:-1::0;;;;;8096:17:0;;;::::1;::::0;;;::::1;::::0;;7877:244::o;3454:98::-;3534:10;3454:98;:::o;15290:346::-;-1:-1:-1;;;;;15392:19:0;;15384:68;;;;-1:-1:-1;;;15384:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15471:21:0;;15463:68;;;;-1:-1:-1;;;15463:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15544:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15596:32;;;;;15574:6;;15596:32;:::i;:::-;;;;;;;;15290:346;;;:::o;12793:2320::-;-1:-1:-1;;;;;12899:23:0;;12891:73;;;;-1:-1:-1;;;12891:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12983:23:0;;12975:71;;;;-1:-1:-1;;;12975:71:0;;;;;;;:::i;:::-;13115:20;13139:22;13157:3;13139:13;:6;13150:1;13139:10;:13::i;:::-;:17;;:22::i;:::-;13115:46;-1:-1:-1;13224:15:0;13248:22;13266:3;13248:13;:6;13259:1;13248:10;:13::i;:22::-;13224:46;-1:-1:-1;13323:20:0;13347:22;13365:3;13347:13;:6;13358:1;13347:10;:13::i;:22::-;-1:-1:-1;;;;;13469:17:0;;13445:21;13469:17;;;:9;:17;;;;;;13323:46;;-1:-1:-1;13624:24:0;:6;13635:12;13624:10;:24::i;:::-;13598:50;-1:-1:-1;13685:26:0;13598:50;13703:7;13685:17;:26::i;:::-;13659:52;-1:-1:-1;13748:31:0;13659:52;13766:12;13748:17;:31::i;:::-;13722:57;;13792:47;13813:6;13821:9;13832:6;13792:20;:47::i;:::-;13971:6;13954:13;:23;;13946:74;;;;-1:-1:-1;;;13946:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14094:17:0;;;;;;:9;:17;;;;;:38;;14126:6;;14094:17;:38;;14126:6;;14094:38;:::i;:::-;;;;-1:-1:-1;;;;;;;14198:20:0;;;;;;:9;:20;;;;;:44;;14229:13;;14198:20;:44;;14229:13;;14198:44;:::i;:::-;;;;-1:-1:-1;;14315:16:0;;-1:-1:-1;;;;;14315:16:0;14305:27;;;;:9;:27;;;;;:43;;14336:12;;14305:27;:43;;14336:12;;14305:43;:::i;:::-;;;;-1:-1:-1;;14405:21:0;;;;:9;:21;;;:38;;14436:7;;14405:21;:38;;14436:7;;14405:38;:::i;:::-;;;;-1:-1:-1;14525:12:0;;-1:-1:-1;14500:9:0;:18;14510:7;:5;:7::i;:::-;-1:-1:-1;;;;;14500:18:0;-1:-1:-1;;;;;14500:18:0;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;;14613:12:0;;:25;;14630:7;14613:16;:25::i;:::-;14598:12;:40;;;;14732:9;-1:-1:-1;;;;;14715:42:0;14724:6;-1:-1:-1;;;;;14715:42:0;-1:-1:-1;;;;;;;;;;;14743:13:0;14715:42;;;;;;:::i;:::-;;;;;;;;14857:16;;14840:48;;-1:-1:-1;;;;;14857:16:0;;;;14840:48;;;-1:-1:-1;;;;;;;;;;;14840:48:0;;;14875:12;;14840:48;:::i;:::-;;;;;;;;14980:1;-1:-1:-1;;;;;14955:37:0;14964:6;-1:-1:-1;;;;;14955:37:0;-1:-1:-1;;;;;;;;;;;14984:7:0;14955:37;;;;;;:::i;:::-;;;;;;;;15081:7;:5;:7::i;:::-;-1:-1:-1;;;;;15064:39:0;15073:6;-1:-1:-1;;;;;15064:39:0;-1:-1:-1;;;;;;;;;;;15090:12:0;15064:39;;;;;;:::i;:::-;;;;;;;;12793:2320;;;;;;;;:::o;4591:98::-;4649:7;4676:5;4680:1;4676;:5;:::i;:::-;4669:12;4591:98;-1:-1:-1;;;4591:98:0:o;4210:::-;4268:7;4295:5;4299:1;4295;:5;:::i;4948:98::-;5006:7;5033:5;5037:1;5033;:5;:::i;5346:98::-;5404:7;5431:5;5435:1;5431;:5;:::i;15644:92::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:402::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:36;3098:3;3083:19;;2880:228::o;3113:398::-;3315:2;3297:21;;;3354:2;3334:18;;;3327:30;3393:34;3388:2;3373:18;;3366:62;-1:-1:-1;;;3459:2:1;3444:18;;3437:32;3501:3;3486:19;;3287:224::o;3516:402::-;3718:2;3700:21;;;3757:2;3737:18;;;3730:30;3796:34;3791:2;3776:18;;3769:62;-1:-1:-1;;;3862:2:1;3847:18;;3840:36;3908:3;3893:19;;3690:228::o;3923:404::-;4125:2;4107:21;;;4164:2;4144:18;;;4137:30;4203:34;4198:2;4183:18;;4176:62;-1:-1:-1;;;4269:2:1;4254:18;;4247:38;4317:3;4302:19;;4097:230::o;4332:356::-;4534:2;4516:21;;;4553:18;;;4546:30;4612:34;4607:2;4592:18;;4585:62;4679:2;4664:18;;4506:182::o;4693:401::-;4895:2;4877:21;;;4934:2;4914:18;;;4907:30;4973:34;4968:2;4953:18;;4946:62;-1:-1:-1;;;5039:2:1;5024:18;;5017:35;5084:3;5069:19;;4867:227::o;5099:400::-;5301:2;5283:21;;;5340:2;5320:18;;;5313:30;5379:34;5374:2;5359:18;;5352:62;-1:-1:-1;;;5445:2:1;5430:18;;5423:34;5489:3;5474:19;;5273:226::o;5504:401::-;5706:2;5688:21;;;5745:2;5725:18;;;5718:30;5784:34;5779:2;5764:18;;5757:62;-1:-1:-1;;;5850:2:1;5835:18;;5828:35;5895:3;5880:19;;5678:227::o;5910:177::-;6056:25;;;6044:2;6029:18;;6011:76::o;6092:184::-;6264:4;6252:17;;;;6234:36;;6222:2;6207:18;;6189:87::o;6281:128::-;;6352:1;6348:6;6345:1;6342:13;6339:2;;;6358:18;;:::i;:::-;-1:-1:-1;6394:9:1;;6329:80::o;6414:217::-;;6480:1;6470:2;;-1:-1:-1;;;6505:31:1;;6559:4;6556:1;6549:15;6587:4;6512:1;6577:15;6470:2;-1:-1:-1;6616:9:1;;6460:171::o;6636:168::-;;6742:1;6738;6734:6;6730:14;6727:1;6724:21;6719:1;6712:9;6705:17;6701:45;6698:2;;;6749:18;;:::i;:::-;-1:-1:-1;6789:9:1;;6688:116::o;6809:125::-;;6877:1;6874;6871:8;6868:2;;;6882:18;;:::i;:::-;-1:-1:-1;6919:9:1;;6858:76::o;6939:380::-;7024:1;7014:12;;7071:1;7061:12;;;7082:2;;7136:4;7128:6;7124:17;7114:27;;7082:2;7189;7181:6;7178:14;7158:18;7155:38;7152:2;;;7235:10;7230:3;7226:20;7223:1;7216:31;7270:4;7267:1;7260:15;7298:4;7295:1;7288:15;7152:2;;6994:325;;;:::o;7324:127::-;7385:10;7380:3;7376:20;7373:1;7366:31;7416:4;7413:1;7406:15;7440:4;7437:1;7430:15
Swarm Source
ipfs://e89aea4b0e9838459221cf440f8203b3acdfe77f8ede96b33a83bd68f73e9cd0
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.