Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Survey
Overview
Max Total Supply
1,000,000,000 ACR
Holders
11,096 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Acreage
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "./IERC20.sol"; import "./SafeMath.sol"; import "./Address.sol"; import "./Ownable.sol"; contract Acreage is IERC20, Ownable { using SafeMath for uint256; using Address for address; //ERC20 Token Definitions mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 public _totalSupply; uint256 public _maxSupply; string private _name; string private _symbol; uint8 private _decimals; //Staking Defintions mapping (address => bool) public isMinting ; mapping(address => uint256) public mintingAmount ; mapping(address => uint256) public mintingStart ; //minimum amount to apply for staking uint public _lvl1 = 1 * 1e5 * 1e18 ; uint public _lvl2 = 1 * 1e6 * 1e18; uint public _lvl3 = 10 * 1e6 * 1e18 ; //time variables uint public week = 604800 ; uint public month = 2628000 ; uint public year = 31540000 ; constructor () public { _name = "Acreage"; _symbol = "ACR"; _decimals = 18; _mint(msg.sender, 1 * 1e9 * 1e18); _maxSupply = 2 * 1e9 * 1e18 ; } modifier canClaim() { require(getCoinAge(msg.sender) >= week, "Staked coins not old enough te redeem rewards") ; _ ; } modifier canStake() { require(_totalSupply < _maxSupply, "Maximum supply reached") ; _ ; } function startMint() canStake public { require(balanceOf(msg.sender) >= _lvl1, "Not enough coins to initiate staking"); require(isMinting[msg.sender] == false, "User already staking") ; require(mintingStart[msg.sender] <= now, "Cannot start staking due to staking time") ; isMinting[msg.sender] = true ; mintingAmount[msg.sender] = balanceOf(msg.sender); mintingStart[msg.sender] = now ; } function stopMint() canClaim public { require(mintingStart[msg.sender] <= now, "Cannot stop staking due to staking time") ; require(isMinting[msg.sender] == true, "User not staking") ; require(balanceOf(msg.sender) >= mintingAmount[msg.sender], "User not enough funds to claim rewards") ; isMinting[msg.sender] = false ; _mint(msg.sender, getMintingReward(msg.sender)) ; mintingAmount[msg.sender] = 0 ; } function getUserLevel(address minter) public view returns (uint8 level) { require(isMinting[minter] == true, "User not minting") ; uint256 amount = mintingAmount[minter] ; if ((amount >= _lvl1) && (amount < _lvl2)) { return 1 ; } if ((amount >= _lvl2) && (amount < _lvl3)) { return 2 ; } if (amount >= _lvl3) { return 3 ; } } function getMintingReward(address minter) public view returns (uint256 reward) { uint amount = mintingAmount[minter] ; uint age = getCoinAge(minter) ; if ((amount >= _lvl1) && (amount < _lvl2)) { return calc_lvl1(amount, age) ; } if ((amount >= _lvl2) && (amount < _lvl3)) { return calc_lvl2(amount, age) ; } if (amount >= _lvl3) { return calc_lvl3(amount, age) ; } } function calc_lvl1(uint amount, uint age) public view returns (uint256 reward) { uint256 exp ; uint256 base ; if (age < month) { exp = age/week ; base = 10033 ; return(amount * base**exp)/(10000**exp) - amount ; //0.33% each week } if ((age >= month) && (age < year)) { exp = age/month ; base = 10150 ; return (amount * base**exp)/(10000**exp) - amount ; //1.5% each month } if (age >= year) { exp = age/year ; base = 12000 ; return (amount * base**exp)/(10000**exp) - amount ; //20% each year } } function calc_lvl2(uint amount, uint age) public view returns (uint256 reward) { uint256 exp ; uint256 base ; if (age < month) { exp = age/week ; base = 10040 ; return (amount * base**exp)/(10000**exp)- amount ; //0.4% each week } if ((age >= month) && (age < year)) { exp = age/month ; base = 10200 ; return (amount * base**exp)/(10000**exp) - amount ; //2% each month } if (age >= year) { exp = age/year ; base = 12750 ; return (amount * base**exp)/(10000**exp) - amount ; //27.5% each year } } function calc_lvl3(uint amount, uint age) public view returns (uint256 reward) { uint256 exp ; uint256 base ; if (age < month) { exp = age/week ; base = 10050 ; return (amount * base**exp)/(10000**exp) - amount ; //0.5% each week } if ((age >= month) && (age < year)) { exp = age/month ; base = 10250 ; return (amount * base**exp)/(10000**exp) - amount ; //2.5% each month } if (age >= year) { exp = age/year ; base = 14000 ; return (amount * base**exp)/(10000**exp) - amount ; //40% each year } } function getCoinAge(address minter) public view returns(uint256 age){ if (isMinting[minter] == true){ return (now - mintingStart[minter]) ; } else { return 0 ; } } function ceil(uint a, uint m) public pure returns (uint ) { return ((a + m - 1) / m) * m; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } 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"); require(isMinting[sender] == false, "User is minting, cannot transfer tokens") ; _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); require(isMinting[owner] == false, 'User is minting, cannot approve tokens') ; _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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 payable) { 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./Context.sol"; /** * @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. */ 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 () internal { 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
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":[],"name":"_lvl1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lvl2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lvl3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"calc_lvl1","outputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"calc_lvl2","outputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"calc_lvl3","outputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"m","type":"uint256"}],"name":"ceil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"minter","type":"address"}],"name":"getCoinAge","outputs":[{"internalType":"uint256","name":"age","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"getMintingReward","outputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"getUserLevel","outputs":[{"internalType":"uint8","name":"level","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintingStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"month","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMint","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"},{"inputs":[],"name":"week","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"year","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405269152d02c7e14af6800000600b5569d3c21bcecceda1000000600c556a084595161401484a000000600d5562093a80600e55622819a0600f556301e143206010553480156200005257600080fd5b50600062000065620001f260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600781526020017f4163726561676500000000000000000000000000000000000000000000000000815250600590805190602001906200015092919062000468565b506040518060400160405280600381526020017f4143520000000000000000000000000000000000000000000000000000000000815250600690805190602001906200019e92919062000468565b506012600760006101000a81548160ff021916908360ff160217905550620001d9336b033b2e3c9fd0803ce8000000620001fa60201b60201c565b6b06765c793fa10079d00000006004819055506200050e565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200029e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620002b260008383620003da60201b60201c565b620002ce81600354620003df60201b62001f931790919060201c565b6003819055506200032d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003df60201b62001f931790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b6000808284019050838110156200045e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004ab57805160ff1916838001178555620004dc565b82800160010185558215620004dc579182015b82811115620004db578251825591602001919060010190620004be565b5b509050620004eb9190620004ef565b5090565b5b808211156200050a576000816000905550600101620004f0565b5090565b612b2f806200051e6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80638384f8291161011a578063a9059cbb116100ad578063d55829651161007c578063d5582965146109cf578063dd62ed3e146109d9578063e5db00cd14610a51578063f2fde38b14610a9d578063f326971614610ae157610206565b8063a9059cbb146108a7578063b2f54b561461090b578063c2302e5e14610957578063d201cbe9146109b157610206565b806392ed7f12116100e957806392ed7f121461071c57806395d89b41146107745780639f683690146107f7578063a457c2d71461084357610206565b80638384f829146106265780638587be6e1461067e5780638c51ad82146106ca5780638da5cb5b146106e857610206565b8063313ce5671161019d5780634995b4581161016c5780634995b4581461056a5780636aec8ddc14610588578063702921f5146105a657806370a08231146105c4578063715018a61461061c57610206565b8063313ce5671461046f57806339509351146104905780633eaaf86b146104f457806344d998fa1461051257610206565b806321923bde116101d957806321923bde1461036857806322f4596f146103c357806323b872dd146103e15780632be095611461046557610206565b806306fdde031461020b578063095ea7b31461028e57806318160ddd146102f25780632086a87714610310575b600080fd5b610213610aff565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102da600480360360408110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ba1565b60405180821515815260200191505060405180910390f35b6102fa610bbf565b6040518082815260200191505060405180910390f35b6103526004803603602081101561032657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bc9565b6040518082815260200191505060405180910390f35b6103aa6004803603602081101561037e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610be1565b604051808260ff16815260200191505060405180910390f35b6103cb610d4b565b6040518082815260200191505060405180910390f35b61044d600480360360608110156103f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d51565b60405180821515815260200191505060405180910390f35b61046d610e2a565b005b61047761114e565b604051808260ff16815260200191505060405180910390f35b6104dc600480360360408110156104a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611165565b60405180821515815260200191505060405180910390f35b6104fc611218565b6040518082815260200191505060405180910390f35b6105546004803603602081101561052857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061121e565b6040518082815260200191505060405180910390f35b6105726112cc565b6040518082815260200191505060405180910390f35b6105906112d2565b6040518082815260200191505060405180910390f35b6105ae6112d8565b6040518082815260200191505060405180910390f35b610606600480360360208110156105da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112de565b6040518082815260200191505060405180910390f35b610624611327565b005b6106686004803603602081101561063c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114ad565b6040518082815260200191505060405180910390f35b6106b46004803603604081101561069457600080fd5b8101908080359060200190929190803590602001909291905050506114c5565b6040518082815260200191505060405180910390f35b6106d26114e0565b6040518082815260200191505060405180910390f35b6106f06114e6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61075e6004803603602081101561073257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061150f565b6040518082815260200191505060405180910390f35b61077c6115db565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107bc5780820151818401526020810190506107a1565b50505050905090810190601f1680156107e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61082d6004803603604081101561080d57600080fd5b81019080803590602001909291908035906020019092919050505061167d565b6040518082815260200191505060405180910390f35b61088f6004803603604081101561085957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611746565b60405180821515815260200191505060405180910390f35b6108f3600480360360408110156108bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611813565b60405180821515815260200191505060405180910390f35b6109416004803603604081101561092157600080fd5b810190808035906020019092919080359060200190929190505050611831565b6040518082815260200191505060405180910390f35b6109996004803603602081101561096d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118fa565b60405180821515815260200191505060405180910390f35b6109b961191a565b6040518082815260200191505060405180910390f35b6109d7611920565b005b610a3b600480360360408110156109ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c32565b6040518082815260200191505060405180910390f35b610a8760048036036040811015610a6757600080fd5b810190808035906020019092919080359060200190929190505050611cb9565b6040518082815260200191505060405180910390f35b610adf60048036036020811015610ab357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d82565b005b610ae9611f8d565b6040518082815260200191505060405180910390f35b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b975780601f10610b6c57610100808354040283529160200191610b97565b820191906000526020600020905b815481529060010190602001808311610b7a57829003601f168201915b5050505050905090565b6000610bb5610bae61201b565b8484612023565b6001905092915050565b6000600354905090565b600a6020528060005260406000206000915090505481565b600060011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f55736572206e6f74206d696e74696e670000000000000000000000000000000081525060200191505060405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b548110158015610d005750600c5481105b15610d0f576001915050610d46565b600c548110158015610d225750600d5481105b15610d31576002915050610d46565b600d548110610d44576003915050610d46565b505b919050565b60045481565b6000610d5e8484846122c3565b610e1f84610d6a61201b565b610e1a85604051806060016040528060288152602001612a1860289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd061201b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126319092919063ffffffff16565b612023565b600190509392505050565b60045460035410610ea3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4d6178696d756d20737570706c7920726561636865640000000000000000000081525060200191505060405180910390fd5b600b54610eaf336112de565b1015610f06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806129a56024913960400191505060405180910390fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fcc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5573657220616c7265616479207374616b696e6700000000000000000000000081525060200191505060405180910390fd5b42600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611064576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806129c96028913960400191505060405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110c5336112de565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b6000600760009054906101000a900460ff16905090565b600061120e61117261201b565b84611209856002600061118361201b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9390919063ffffffff16565b612023565b6001905092915050565b60035481565b600060011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156112c257600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054420390506112c7565b600090505b919050565b600e5481565b600b5481565b600f5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61132f61201b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60096020528060005260406000206000915090505481565b60008182600184860103816114d657fe5b0402905092915050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600061155f8461121e565b9050600b5482101580156115745750600c5482105b1561158c57611583828261167d565b925050506115d6565b600c54821015801561159f5750600d5482105b156115b7576115ae8282611831565b925050506115d6565b600d5482106115d3576115ca8282611cb9565b925050506115d6565b50505b919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116735780601f1061164857610100808354040283529160200191611673565b820191906000526020600020905b81548152906001019060200180831161165657829003601f168201915b5050505050905090565b6000806000600f548410156116bc57600e54848161169757fe5b049150612731905084826127100a83830a8702816116b157fe5b040392505050611740565b600f5484101580156116cf575060105484105b1561170457600f5484816116df57fe5b0491506127a6905084826127100a83830a8702816116f957fe5b040392505050611740565b601054841061173d57601054848161171857fe5b049150612ee0905084826127100a83830a87028161173257fe5b040392505050611740565b50505b92915050565b600061180961175361201b565b8461180485604051806060016040528060258152602001612ad5602591396002600061177d61201b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126319092919063ffffffff16565b612023565b6001905092915050565b600061182761182061201b565b84846122c3565b6001905092915050565b6000806000600f5484101561187057600e54848161184b57fe5b049150612738905084826127100a83830a87028161186557fe5b0403925050506118f4565b600f548410158015611883575060105484105b156118b857600f54848161189357fe5b0491506127d8905084826127100a83830a8702816118ad57fe5b0403925050506118f4565b60105484106118f15760105484816118cc57fe5b0491506131ce905084826127100a83830a8702816118e657fe5b0403925050506118f4565b50505b92915050565b60086020528060005260406000206000915054906101000a900460ff1681565b600c5481565b600e5461192c3361121e565b1015611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612951602d913960400191505060405180910390fd5b42600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611a1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061297e6027913960400191505060405180910390fd5b60011515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611ae1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f55736572206e6f74207374616b696e670000000000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2a336112de565b1015611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612aaf6026913960400191505060405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611beb33611be63361150f565b6126f1565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000600f54841015611cf857600e548481611cd357fe5b049150612742905084826127100a83830a870281611ced57fe5b040392505050611d7c565b600f548410158015611d0b575060105484105b15611d4057600f548481611d1b57fe5b04915061280a905084826127100a83830a870281611d3557fe5b040392505050611d7c565b6010548410611d79576010548481611d5457fe5b0491506136b0905084826127100a83830a870281611d6e57fe5b040392505050611d7c565b50505b92915050565b611d8a61201b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128e36026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600080828401905083811015612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612a8b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561212f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129096022913960400191505060405180910390fd5b60001515600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146121d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612a406026913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612a666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128c06023913960400191505060405180910390fd5b60001515600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612478576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806129f16027913960400191505060405180910390fd5b6124838383836128ba565b6124ef8160405180606001604052806026815260200161292b60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126319092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061258481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126a3578082015181840152602081019050612688565b50505050905090810190601f1680156126d05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6127a0600083836128ba565b6127b581600354611f9390919063ffffffff16565b60038190555061280d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655374616b656420636f696e73206e6f74206f6c6420656e6f7567682074652072656465656d207265776172647343616e6e6f742073746f70207374616b696e672064756520746f207374616b696e672074696d654e6f7420656e6f75676820636f696e7320746f20696e697469617465207374616b696e6743616e6e6f74207374617274207374616b696e672064756520746f207374616b696e672074696d6555736572206973206d696e74696e672c2063616e6e6f74207472616e7366657220746f6b656e7345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636555736572206973206d696e74696e672c2063616e6e6f7420617070726f766520746f6b656e7345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737355736572206e6f7420656e6f7567682066756e647320746f20636c61696d207265776172647345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a043fdf2eb775336c4986c9ca14ca5e7b76c9ed282152b7d5ec6d9308995767d64736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c80638384f8291161011a578063a9059cbb116100ad578063d55829651161007c578063d5582965146109cf578063dd62ed3e146109d9578063e5db00cd14610a51578063f2fde38b14610a9d578063f326971614610ae157610206565b8063a9059cbb146108a7578063b2f54b561461090b578063c2302e5e14610957578063d201cbe9146109b157610206565b806392ed7f12116100e957806392ed7f121461071c57806395d89b41146107745780639f683690146107f7578063a457c2d71461084357610206565b80638384f829146106265780638587be6e1461067e5780638c51ad82146106ca5780638da5cb5b146106e857610206565b8063313ce5671161019d5780634995b4581161016c5780634995b4581461056a5780636aec8ddc14610588578063702921f5146105a657806370a08231146105c4578063715018a61461061c57610206565b8063313ce5671461046f57806339509351146104905780633eaaf86b146104f457806344d998fa1461051257610206565b806321923bde116101d957806321923bde1461036857806322f4596f146103c357806323b872dd146103e15780632be095611461046557610206565b806306fdde031461020b578063095ea7b31461028e57806318160ddd146102f25780632086a87714610310575b600080fd5b610213610aff565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102da600480360360408110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ba1565b60405180821515815260200191505060405180910390f35b6102fa610bbf565b6040518082815260200191505060405180910390f35b6103526004803603602081101561032657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bc9565b6040518082815260200191505060405180910390f35b6103aa6004803603602081101561037e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610be1565b604051808260ff16815260200191505060405180910390f35b6103cb610d4b565b6040518082815260200191505060405180910390f35b61044d600480360360608110156103f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d51565b60405180821515815260200191505060405180910390f35b61046d610e2a565b005b61047761114e565b604051808260ff16815260200191505060405180910390f35b6104dc600480360360408110156104a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611165565b60405180821515815260200191505060405180910390f35b6104fc611218565b6040518082815260200191505060405180910390f35b6105546004803603602081101561052857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061121e565b6040518082815260200191505060405180910390f35b6105726112cc565b6040518082815260200191505060405180910390f35b6105906112d2565b6040518082815260200191505060405180910390f35b6105ae6112d8565b6040518082815260200191505060405180910390f35b610606600480360360208110156105da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112de565b6040518082815260200191505060405180910390f35b610624611327565b005b6106686004803603602081101561063c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114ad565b6040518082815260200191505060405180910390f35b6106b46004803603604081101561069457600080fd5b8101908080359060200190929190803590602001909291905050506114c5565b6040518082815260200191505060405180910390f35b6106d26114e0565b6040518082815260200191505060405180910390f35b6106f06114e6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61075e6004803603602081101561073257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061150f565b6040518082815260200191505060405180910390f35b61077c6115db565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107bc5780820151818401526020810190506107a1565b50505050905090810190601f1680156107e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61082d6004803603604081101561080d57600080fd5b81019080803590602001909291908035906020019092919050505061167d565b6040518082815260200191505060405180910390f35b61088f6004803603604081101561085957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611746565b60405180821515815260200191505060405180910390f35b6108f3600480360360408110156108bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611813565b60405180821515815260200191505060405180910390f35b6109416004803603604081101561092157600080fd5b810190808035906020019092919080359060200190929190505050611831565b6040518082815260200191505060405180910390f35b6109996004803603602081101561096d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118fa565b60405180821515815260200191505060405180910390f35b6109b961191a565b6040518082815260200191505060405180910390f35b6109d7611920565b005b610a3b600480360360408110156109ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c32565b6040518082815260200191505060405180910390f35b610a8760048036036040811015610a6757600080fd5b810190808035906020019092919080359060200190929190505050611cb9565b6040518082815260200191505060405180910390f35b610adf60048036036020811015610ab357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d82565b005b610ae9611f8d565b6040518082815260200191505060405180910390f35b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b975780601f10610b6c57610100808354040283529160200191610b97565b820191906000526020600020905b815481529060010190602001808311610b7a57829003601f168201915b5050505050905090565b6000610bb5610bae61201b565b8484612023565b6001905092915050565b6000600354905090565b600a6020528060005260406000206000915090505481565b600060011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f55736572206e6f74206d696e74696e670000000000000000000000000000000081525060200191505060405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b548110158015610d005750600c5481105b15610d0f576001915050610d46565b600c548110158015610d225750600d5481105b15610d31576002915050610d46565b600d548110610d44576003915050610d46565b505b919050565b60045481565b6000610d5e8484846122c3565b610e1f84610d6a61201b565b610e1a85604051806060016040528060288152602001612a1860289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd061201b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126319092919063ffffffff16565b612023565b600190509392505050565b60045460035410610ea3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4d6178696d756d20737570706c7920726561636865640000000000000000000081525060200191505060405180910390fd5b600b54610eaf336112de565b1015610f06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806129a56024913960400191505060405180910390fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fcc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5573657220616c7265616479207374616b696e6700000000000000000000000081525060200191505060405180910390fd5b42600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611064576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806129c96028913960400191505060405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110c5336112de565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b6000600760009054906101000a900460ff16905090565b600061120e61117261201b565b84611209856002600061118361201b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9390919063ffffffff16565b612023565b6001905092915050565b60035481565b600060011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156112c257600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054420390506112c7565b600090505b919050565b600e5481565b600b5481565b600f5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61132f61201b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60096020528060005260406000206000915090505481565b60008182600184860103816114d657fe5b0402905092915050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600061155f8461121e565b9050600b5482101580156115745750600c5482105b1561158c57611583828261167d565b925050506115d6565b600c54821015801561159f5750600d5482105b156115b7576115ae8282611831565b925050506115d6565b600d5482106115d3576115ca8282611cb9565b925050506115d6565b50505b919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116735780601f1061164857610100808354040283529160200191611673565b820191906000526020600020905b81548152906001019060200180831161165657829003601f168201915b5050505050905090565b6000806000600f548410156116bc57600e54848161169757fe5b049150612731905084826127100a83830a8702816116b157fe5b040392505050611740565b600f5484101580156116cf575060105484105b1561170457600f5484816116df57fe5b0491506127a6905084826127100a83830a8702816116f957fe5b040392505050611740565b601054841061173d57601054848161171857fe5b049150612ee0905084826127100a83830a87028161173257fe5b040392505050611740565b50505b92915050565b600061180961175361201b565b8461180485604051806060016040528060258152602001612ad5602591396002600061177d61201b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126319092919063ffffffff16565b612023565b6001905092915050565b600061182761182061201b565b84846122c3565b6001905092915050565b6000806000600f5484101561187057600e54848161184b57fe5b049150612738905084826127100a83830a87028161186557fe5b0403925050506118f4565b600f548410158015611883575060105484105b156118b857600f54848161189357fe5b0491506127d8905084826127100a83830a8702816118ad57fe5b0403925050506118f4565b60105484106118f15760105484816118cc57fe5b0491506131ce905084826127100a83830a8702816118e657fe5b0403925050506118f4565b50505b92915050565b60086020528060005260406000206000915054906101000a900460ff1681565b600c5481565b600e5461192c3361121e565b1015611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612951602d913960400191505060405180910390fd5b42600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611a1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061297e6027913960400191505060405180910390fd5b60011515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611ae1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f55736572206e6f74207374616b696e670000000000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2a336112de565b1015611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612aaf6026913960400191505060405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611beb33611be63361150f565b6126f1565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000600f54841015611cf857600e548481611cd357fe5b049150612742905084826127100a83830a870281611ced57fe5b040392505050611d7c565b600f548410158015611d0b575060105484105b15611d4057600f548481611d1b57fe5b04915061280a905084826127100a83830a870281611d3557fe5b040392505050611d7c565b6010548410611d79576010548481611d5457fe5b0491506136b0905084826127100a83830a870281611d6e57fe5b040392505050611d7c565b50505b92915050565b611d8a61201b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128e36026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600080828401905083811015612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612a8b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561212f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129096022913960400191505060405180910390fd5b60001515600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146121d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612a406026913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612a666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128c06023913960400191505060405180910390fd5b60001515600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612478576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806129f16027913960400191505060405180910390fd5b6124838383836128ba565b6124ef8160405180606001604052806026815260200161292b60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126319092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061258481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126a3578082015181840152602081019050612688565b50505050905090810190601f1680156126d05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6127a0600083836128ba565b6127b581600354611f9390919063ffffffff16565b60038190555061280d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655374616b656420636f696e73206e6f74206f6c6420656e6f7567682074652072656465656d207265776172647343616e6e6f742073746f70207374616b696e672064756520746f207374616b696e672074696d654e6f7420656e6f75676820636f696e7320746f20696e697469617465207374616b696e6743616e6e6f74207374617274207374616b696e672064756520746f207374616b696e672074696d6555736572206973206d696e74696e672c2063616e6e6f74207472616e7366657220746f6b656e7345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636555736572206973206d696e74696e672c2063616e6e6f7420617070726f766520746f6b656e7345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737355736572206e6f7420656e6f7567682066756e647320746f20636c61696d207265776172647345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a043fdf2eb775336c4986c9ca14ca5e7b76c9ed282152b7d5ec6d9308995767d64736f6c634300060c0033
Deployed Bytecode Sourcemap
163:9950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6164:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7018:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6441:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;741:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2571:463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;475:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7195:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1597:462;;;:::i;:::-;;6350:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7524:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;441:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5809:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1003:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;846:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1037:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6549:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1737:148:4;;;:::i;:::-;;685:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6051:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;932:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1095:79:4;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3042:517:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6255:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3571:730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7750:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6676:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4313:738;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;634:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;890:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2072:487;;;:::i;:::-;;6859:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5063:734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2040:244:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1073:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6164:83;6201:13;6234:5;6227:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6164:83;:::o;7018:169::-;7101:4;7118:39;7127:12;:10;:12::i;:::-;7141:7;7150:6;7118:8;:39::i;:::-;7175:4;7168:11;;7018:169;;;;:::o;6441:100::-;6494:7;6521:12;;6514:19;;6441:100;:::o;741:47::-;;;;;;;;;;;;;;;;;:::o;2571:463::-;2630:11;2683:4;2662:25;;:9;:17;2672:6;2662:17;;;;;;;;;;;;;;;;;;;;;;;;;:25;;;2654:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2720:14;2737:13;:21;2751:6;2737:21;;;;;;;;;;;;;;;;2720:38;;2785:5;;2775:6;:15;;2774:37;;;;;2805:5;;2796:6;:14;2774:37;2770:80;;;2835:1;2828:8;;;;;2770:80;2885:5;;2875:6;:15;;2874:37;;;;;2905:5;;2896:6;:14;2874:37;2870:80;;;2935:1;2928:8;;;;;2870:80;2984:5;;2974:6;:15;2970:57;;3013:1;3006:8;;;;;2970:57;2571:463;;;;;:::o;475:25::-;;;;:::o;7195:321::-;7301:4;7318:36;7328:6;7336:9;7347:6;7318:9;:36::i;:::-;7365:121;7374:6;7382:12;:10;:12::i;:::-;7396:89;7434:6;7396:89;;;;;;;;;;;;;;;;;:11;:19;7408:6;7396:19;;;;;;;;;;;;;;;:33;7416:12;:10;:12::i;:::-;7396:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;7365:8;:121::i;:::-;7504:4;7497:11;;7195:321;;;;;:::o;1597:462::-;1525:10;;1510:12;;:25;1502:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1678:5:::1;;1653:21;1663:10;1653:9;:21::i;:::-;:30;;1645:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1768:5;1743:30;;:9;:21;1753:10;1743:21;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;1735:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;1846:3;1818:12;:24;1831:10;1818:24;;;;;;;;;;;;;;;;:31;;1810:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1941:4;1917:9;:21;1927:10;1917:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;1986:21;1996:10;1986:9;:21::i;:::-;1958:13;:25;1972:10;1958:25;;;;;;;;;;;;;;;:49;;;;2046:3;2019:12;:24;2032:10;2019:24;;;;;;;;;;;;;;;:30;;;;1597:462::o:0;6350:83::-;6391:5;6416:9;;;;;;;;;;;6409:16;;6350:83;:::o;7524:218::-;7612:4;7629:83;7638:12;:10;:12::i;:::-;7652:7;7661:50;7700:10;7661:11;:25;7673:12;:10;:12::i;:::-;7661:25;;;;;;;;;;;;;;;:34;7687:7;7661:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;7629:8;:83::i;:::-;7730:4;7723:11;;7524:218;;;;:::o;441:27::-;;;;:::o;5809:230::-;5865:11;5913:4;5892:25;;:9;:17;5902:6;5892:17;;;;;;;;;;;;;;;;;;;;;;;;;:25;;;5888:144;;;5947:12;:20;5960:6;5947:20;;;;;;;;;;;;;;;;5941:3;:26;5933:35;;;;5888:144;6018:1;6011:8;;5809:230;;;;:::o;1003:25::-;;;;:::o;846:34::-;;;;:::o;1037:27::-;;;;:::o;6549:119::-;6615:7;6642:9;:18;6652:7;6642:18;;;;;;;;;;;;;;;;6635:25;;6549:119;;;:::o;1737:148:4:-;1317:12;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1844:1:::1;1807:40;;1828:6;::::0;::::1;;;;;;;;1807:40;;;;;;;;;;;;1875:1;1858:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1737:148::o:0;685:48:0:-;;;;;;;;;;;;;;;;;:::o;6051:105::-;6102:4;6147:1;6142;6137;6133;6129;:5;:9;6128:15;;;;;;6127:21;6120:28;;6051:105;;;;:::o;932:35::-;;;;:::o;1095:79:4:-;1133:7;1160:6;;;;;;;;;;;1153:13;;1095:79;:::o;3042:517:0:-;3105:14;3132:11;3146:13;:21;3160:6;3146:21;;;;;;;;;;;;;;;;3132:35;;3180:8;3191:18;3202:6;3191:10;:18::i;:::-;3180:29;;3247:5;;3237:6;:15;;3236:37;;;;;3267:5;;3258:6;:14;3236:37;3232:101;;;3297:22;3307:6;3315:3;3297:9;:22::i;:::-;3290:29;;;;;;3232:101;3368:5;;3358:6;:15;;3357:37;;;;;3388:5;;3379:6;:14;3357:37;3353:101;;;3418:22;3428:6;3436:3;3418:9;:22::i;:::-;3411:29;;;;;;3353:101;3488:5;;3478:6;:15;3474:78;;3517:22;3527:6;3535:3;3517:9;:22::i;:::-;3510:29;;;;;;3474:78;3042:517;;;;;;:::o;6255:87::-;6294:13;6327:7;6320:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6255:87;:::o;3571:730::-;3634:14;3661:11;3685:12;3730:5;;3724:3;:11;3720:172;;;3762:4;;3758:3;:8;;;;;;3752:14;;3790:5;3783:12;;3854:6;3847:3;3840:5;:10;3834:3;3828:4;:9;3819:6;:18;3818:33;;;;;;:42;3812:48;;;;;;3720:172;3924:5;;3917:3;:12;;3916:30;;;;;3941:4;;3935:3;:10;3916:30;3912:192;;;3973:5;;3969:3;:9;;;;;;3963:15;;4001:5;3994:12;;4066:6;4059:3;4052:5;:10;4046:3;4040:4;:9;4031:6;:18;4030:33;;;;;;:42;4023:49;;;;;;3912:192;4135:4;;4128:3;:11;4124:170;;4166:4;;4162:3;:8;;;;;;4156:14;;4194:5;4187:12;;4259:6;4252:3;4245:5;:10;4239:3;4233:4;:9;4224:6;:18;4223:33;;;;;;:42;4216:49;;;;;;4124:170;3571:730;;;;;;;:::o;7750:269::-;7843:4;7860:129;7869:12;:10;:12::i;:::-;7883:7;7892:96;7931:15;7892:96;;;;;;;;;;;;;;;;;:11;:25;7904:12;:10;:12::i;:::-;7892:25;;;;;;;;;;;;;;;:34;7918:7;7892:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;7860:8;:129::i;:::-;8007:4;8000:11;;7750:269;;;;:::o;6676:175::-;6762:4;6779:42;6789:12;:10;:12::i;:::-;6803:9;6814:6;6779:9;:42::i;:::-;6839:4;6832:11;;6676:175;;;;:::o;4313:738::-;4376:14;4403:11;4427:12;4472:5;;4466:3;:11;4462:171;;;4504:4;;4500:3;:8;;;;;;4494:14;;4532:5;4525:12;;4596:6;4590:3;4583:5;:10;4577:3;4571:4;:9;4562:6;:18;4561:33;;;;;;:41;4554:48;;;;;;4462:171;4665:5;;4658:3;:12;;4657:30;;;;;4682:4;;4676:3;:10;4657:30;4653:191;;;4714:5;;4710:3;:9;;;;;;4704:15;;4743:5;4736:12;;4808:6;4801:3;4794:5;:10;4788:3;4782:4;:9;4773:6;:18;4772:33;;;;;;:42;4765:49;;;;;;4653:191;4875:4;;4868:3;:11;4864:172;;4906:4;;4902:3;:8;;;;;;4896:14;;4934:5;4927:12;;4999:6;4992:3;4985:5;:10;4979:3;4973:4;:9;4964:6;:18;4963:33;;;;;;:42;4956:49;;;;;;4864:172;4313:738;;;;;;;:::o;634:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;890:34::-;;;;:::o;2072:487::-;1382:4;;1356:22;1367:10;1356;:22::i;:::-;:30;;1348:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2155:3:::1;2127:12;:24;2140:10;2127:24;;;;;;;;;;;;;;;;:31;;2119:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2248:4;2223:29;;:9;:21;2233:10;2223:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;2215:58;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;2319:13;:25;2333:10;2319:25;;;;;;;;;;;;;;;;2294:21;2304:10;2294:9;:21::i;:::-;:50;;2286:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2434:5;2410:9;:21;2420:10;2410:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;2460:47;2466:10;2478:28;2495:10;2478:16;:28::i;:::-;2460:5;:47::i;:::-;2548:1;2520:13;:25;2534:10;2520:25;;;;;;;;;;;;;;;:29;;;;2072:487::o:0;6859:151::-;6948:7;6975:11;:18;6987:5;6975:18;;;;;;;;;;;;;;;:27;6994:7;6975:27;;;;;;;;;;;;;;;;6968:34;;6859:151;;;;:::o;5063:734::-;5126:14;5153:11;5177:12;5221:5;;5215:3;:11;5211:172;;;5253:4;;5249:3;:8;;;;;;5243:14;;5281:5;5274:12;;5346:6;5339:3;5332:5;:10;5326:3;5320:4;:9;5311:6;:18;5310:33;;;;;;:42;5303:49;;;;;;5211:172;5415:5;;5408:3;:12;;5407:30;;;;;5432:4;;5426:3;:10;5407:30;5403:193;;;5464:5;;5460:3;:9;;;;;;5454:15;;5493:5;5486:12;;5558:6;5551:3;5544:5;:10;5538:3;5532:4;:9;5523:6;:18;5522:33;;;;;;:42;5515:49;;;;;;5403:193;5627:4;;5620:3;:11;5616:170;;5658:4;;5654:3;:8;;;;;;5648:14;;5686:5;5679:12;;5751:6;5744:3;5737:5;:10;5731:3;5725:4;:9;5716:6;:18;5715:33;;;;;;:42;5708:49;;;;;;5616:170;5063:734;;;;;;;:::o;2040:244:4:-;1317:12;:10;:12::i;:::-;1307:22;;:6;;;;;;;;;;:22;;;1299:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2149:1:::1;2129:22;;:8;:22;;;;2121:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2239:8;2210:38;;2231:6;::::0;::::1;;;;;;;;2210:38;;;;;;;;;;;;2268:8;2259:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2040:244:::0;:::o;1073:27:0:-;;;;:::o;902:181:5:-;960:7;980:9;996:1;992;:5;980:17;;1021:1;1016;:6;;1008:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074:1;1067:8;;;902:181;;;;:::o;605:106:2:-;658:15;693:10;686:17;;605:106;:::o;9477:435:0:-;9596:1;9579:19;;:5;:19;;;;9571:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9677:1;9658:21;;:7;:21;;;;9650:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9757:5;9737:25;;:9;:16;9747:5;9737:16;;;;;;;;;;;;;;;;;;;;;;;;;:25;;;9729:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9850:6;9820:11;:18;9832:5;9820:18;;;;;;;;;;;;;;;:27;9839:7;9820:27;;;;;;;;;;;;;;;:36;;;;9888:7;9872:32;;9881:5;9872:32;;;9897:6;9872:32;;;;;;;;;;;;;;;;;;9477:435;;;:::o;8027:630::-;8151:1;8133:20;;:6;:20;;;;8125:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8235:1;8214:23;;:9;:23;;;;8206:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8317:5;8296:26;;:9;:17;8306:6;8296:17;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;8288:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8381:47;8402:6;8410:9;8421:6;8381:20;:47::i;:::-;8461:71;8483:6;8461:71;;;;;;;;;;;;;;;;;:9;:17;8471:6;8461:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;8441:9;:17;8451:6;8441:17;;;;;;;;;;;;;;;:91;;;;8566:32;8591:6;8566:9;:20;8576:9;8566:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;8543:9;:20;8553:9;8543:20;;;;;;;;;;;;;;;:55;;;;8631:9;8614:35;;8623:6;8614:35;;;8642:6;8614:35;;;;;;;;;;;;;;;;;;8027:630;;;:::o;1805:192:5:-;1891:7;1924:1;1919;:6;;1927:12;1911:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951:9;1967:1;1963;:5;1951:17;;1988:1;1981:8;;;1805:192;;;;;:::o;8665:378:0:-;8768:1;8749:21;;:7;:21;;;;8741:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8819:49;8848:1;8852:7;8861:6;8819:20;:49::i;:::-;8896:24;8913:6;8896:12;;:16;;:24;;;;:::i;:::-;8881:12;:39;;;;8952:30;8975:6;8952:9;:18;8962:7;8952:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;8931:9;:18;8941:7;8931:18;;;;;;;;;;;;;;;:51;;;;9019:7;8998:37;;9015:1;8998:37;;;9028:6;8998:37;;;;;;;;;;;;;;;;;;8665:378;;:::o;10018:92::-;;;;:::o
Swarm Source
ipfs://a043fdf2eb775336c4986c9ca14ca5e7b76c9ed282152b7d5ec6d9308995767d
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.