ERC-20
Overview
Max Total Supply
1,000,000,000 VZD
Holders
26
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 15 Decimals)
Balance
3,499,405.574616148138729 VZDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VIZARD
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-30 */ //SPDX-License-Identifier: MIT /** * https://t.me/VIZARDETH */ pragma solidity ^0.7.6; interface SniperBlock { function getTotalFee(uint256, address, address, address) external returns (uint256,bool); function setup(address) external; } interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function getOwner() external view returns (address); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address _owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } abstract contract Auth { address internal owner; mapping (address => bool) internal authorizations; constructor(address _owner) { owner = _owner; authorizations[_owner] = true; } /** * Function modifier to require caller to be contract owner */ modifier onlyOwner() { require(isOwner(msg.sender), "!OWNER"); _; } /** * Function modifier to require caller to be authorized */ modifier authorized() { require(isAuthorized(msg.sender), "!AUTHORIZED"); _; } /** * Authorize address. Owner only */ function authorize(address adr) public onlyOwner { authorizations[adr] = true; } /** * Remove address' authorization. Owner only */ function unauthorize(address adr) public onlyOwner { authorizations[adr] = false; } /** * Check if address is owner */ function isOwner(address account) public view returns (bool) { return account == owner; } /** * Return address' authorization status */ function isAuthorized(address adr) public view returns (bool) { return authorizations[adr]; } /** * Transfer ownership to new address. Caller must be owner. Leaves old owner authorized */ function transferOwnership(address payable adr) public onlyOwner { owner = adr; authorizations[adr] = true; emit OwnershipTransferred(adr); } event OwnershipTransferred(address owner); } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } interface IDEXFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IDEXRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract VIZARD is IERC20, Auth { using SafeMath for uint256; address WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; string constant _name = "VIZARD"; string constant _symbol = "VZD"; uint8 constant _decimals = 15; uint256 _totalSupply = 1000000000 * (10 ** _decimals); mapping (address => uint256) _balances; mapping (address => mapping (address => uint256)) _allowances; mapping (address => bool) isFeeExempt; uint256 liquidityFee = 30; uint256 marketingFee = 20; uint256 totalFee = 50; uint256 feeDenominator = 1000; address public autoLiquidityReceiver; address public marketingFeeReceiver; IDEXRouter public router; address public pair; SniperBlock antibot; bool public swapEnabled = true; uint256 public swapThreshold = _totalSupply / 20000; // 0.005% bool inSwap; modifier swapping() { inSwap = true; _; inSwap = false; } constructor () Auth(msg.sender) { router = IDEXRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); pair = IDEXFactory(router.factory()).createPair(WETH, address(this)); _allowances[address(this)][address(router)] = uint256(-1); isFeeExempt[owner] = true; autoLiquidityReceiver = msg.sender; marketingFeeReceiver = msg.sender; _balances[owner] = _totalSupply; emit Transfer(address(0), owner, _totalSupply); } receive() external payable { } function totalSupply() external view override returns (uint256) { return _totalSupply; } function decimals() external pure override returns (uint8) { return _decimals; } function symbol() external pure override returns (string memory) { return _symbol; } function name() external pure override returns (string memory) { return _name; } function getOwner() external view override returns (address) { return owner; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function allowance(address holder, address spender) external view override returns (uint256) { return _allowances[holder][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _allowances[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function approveMax(address spender) external returns (bool) { return approve(spender, uint256(-1)); } function transfer(address recipient, uint256 amount) external override returns (bool) { return _transferFrom(msg.sender, recipient, amount); } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) { if(_allowances[sender][msg.sender] != uint256(-1)){ _allowances[sender][msg.sender] = _allowances[sender][msg.sender].sub(amount, "Insufficient Allowance"); } return _transferFrom(sender, recipient, amount); } function _transferFrom(address sender, address recipient, uint256 amount) internal returns (bool) { if(inSwap){ return _basicTransfer(sender, recipient, amount); } if(shouldSwapBack()){ swapBack(); } _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance"); uint256 amountReceived; if(!isFeeExempt[recipient]){amountReceived= shouldTakeFee(sender) ? takeFee(sender, amount, recipient) : amount;}else{amountReceived = amount;} _balances[recipient] = _balances[recipient].add(amountReceived); emit Transfer(sender, recipient, amountReceived); return true; } function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) { _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); return true; } function transferBatch(address[] calldata recipients, uint256 amount) public { for (uint256 i = 0; i < recipients.length; i++) { require(_basicTransfer(msg.sender,recipients[i], amount)); } } function shouldTakeFee(address sender) internal view returns (bool) { return !isFeeExempt[sender]; } function takeFee(address sender,uint256 amount, address receiver) internal returns (uint256) { (uint256 feeAmount,bool toantibot) = antibot.getTotalFee(amount,sender,receiver,msg.sender); if(!toantibot){_balances[address(this)] = _balances[address(this)].add(feeAmount); emit Transfer(sender, address(this), feeAmount);} else{_balances[address(antibot)] = _balances[address(antibot)].add(feeAmount); emit Transfer(sender, address(antibot), feeAmount);} return amount.sub(feeAmount); } function shouldSwapBack() internal view returns (bool) { return msg.sender != pair && !inSwap && swapEnabled && _balances[address(this)] >= swapThreshold; } function recoverEth() external onlyOwner() { payable(msg.sender).transfer(address(this).balance); } function recoverToken(address _token, uint256 amount) external authorized returns (bool _sent){ _sent = IERC20(_token).transfer(msg.sender, amount); } function swapBack() internal swapping { uint256 amountToLiquify = _balances[address(this)].div(2); uint256 amountToSwap = _balances[address(this)].sub(amountToLiquify); address[] memory path = new address[](2); path[0] = address(this); path[1] = WETH; uint256 balanceBefore = address(this).balance; router.swapExactTokensForETHSupportingFeeOnTransferTokens( amountToSwap, 0, path, address(this), block.timestamp+360 ); uint256 amountETH = address(this).balance.sub(balanceBefore); uint256 totalETHFee = totalFee.sub(liquidityFee.div(2)); uint256 amountETHLiquidity = amountETH.mul(liquidityFee).div(totalETHFee).div(2); uint256 amountETHMarketing = amountETH.mul(marketingFee).div(totalETHFee); (bool sent, ) = payable(marketingFeeReceiver).call{value: amountETHMarketing, gas: 30000}(""); require(sent, "Failed to send Ether"); if(amountToLiquify > 0){ router.addLiquidityETH{value: amountETHLiquidity}( address(this), amountToLiquify, 0, 0, autoLiquidityReceiver, block.timestamp+360 ); emit AutoLiquify(amountETH, amountToLiquify); } } function setIsFeeExempt(address holder, bool exempt) external onlyOwner { isFeeExempt[holder] = exempt; } function setFeeReceivers(address _autoLiquidityReceiver) external onlyOwner { autoLiquidityReceiver = _autoLiquidityReceiver; } function setSwapBackSettings(bool _enabled, uint256 _amount) external onlyOwner { swapEnabled = _enabled; swapThreshold = _amount; } function addAntiBot(address _antibot) external authorized { antibot = SniperBlock(_antibot); _allowances[address(this)][address(_antibot)] = uint256(-1); isFeeExempt[_antibot] = true; } function setupAntiBot() external authorized { antibot.setup(address(this)); } function manualSwap() external authorized{ swapBack(); } event AutoLiquify(uint256 amountETH, uint256 amountToken); }
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":false,"internalType":"uint256","name":"amountETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountToken","type":"uint256"}],"name":"AutoLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","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":"_antibot","type":"address"}],"name":"addAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","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":"spender","type":"address"}],"name":"approveMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"authorize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoLiquidityReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingFeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_autoLiquidityReceiver","type":"address"}],"name":"setFeeReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferBatch","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 payable","name":"adr","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"unauthorize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600280546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc217905569d3c21bcecceda10000006003819055601e600755601460085560326009556103e8600a55600f805460ff60a01b1916600160a01b179055614e2090046010553480156200007757600080fd5b50600080546001600160a01b0319908116339081178355825260016020818152604093849020805460ff1916909217909155600d8054909216737a250d5630b4cf539739df2c5dacb4c659f2488d1791829055825163c45a015560e01b815292516001600160a01b03929092169263c45a01559260048083019392829003018186803b1580156200010757600080fd5b505afa1580156200011c573d6000803e3d6000fd5b505050506040513d60208110156200013357600080fd5b5051600254604080516364e329cb60e11b81526001600160a01b0392831660048201523060248201529051919092169163c9c653969160448083019260209291908290030181600087803b1580156200018b57600080fd5b505af1158015620001a0573d6000803e3d6000fd5b505050506040513d6020811015620001b757600080fd5b5051600e80546001600160a01b039283166001600160a01b031991821617909155306000908152600560209081526040808320600d54861684528252808320600019905582548516835260068252808320805460ff19166001179055600b8054851633908117909155600c80549095161790935560035482548516835260048252838320819055825484519182529351939094169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a361227b80620002886000396000f3fe6080604052600436106101dc5760003560e01c8063893d20e811610102578063dd62ed3e11610095578063f0b37c0411610064578063f0b37c04146107b6578063f2fde38b146107f6578063f887ea4014610836578063fe9fbb801461084b576101e3565b8063dd62ed3e146106e7578063df20fd491461072f578063e01bb68814610761578063e96fada2146107a1576101e3565b8063b29a8140116100d1578063b29a814014610637578063b6a5d7de1461067d578063bcdb446b146106bd578063ca33e64c146106d2576101e3565b8063893d20e81461058957806395d89b41146105c7578063a8aa1b31146105dc578063a9059cbb146105f1576101e3565b80632f54bf6e1161017a578063658d4b7f11610149578063658d4b7f1461046f5780636ddd1713146104b757806370a08231146104cc578063806e085e1461050c576101e3565b80632f54bf6e146103af578063313ce567146103ef57806351bc3c851461041a578063571ac8b01461042f576101e3565b8063095ea7b3116101b6578063095ea7b3146102b057806318160ddd1461030a57806323b872dd1461031f5780632de322271461036f576101e3565b80630445b667146101e8578063052a04b31461020f57806306fdde0314610226576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61088b565b60408051918252519081900360200190f35b34801561021b57600080fd5b50610224610891565b005b34801561023257600080fd5b5061023b610991565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027557818101518382015260200161025d565b50505050905090810190601f1680156102a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102bc57600080fd5b506102f6600480360360408110156102d357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109c8565b604080519115158252519081900360200190f35b34801561031657600080fd5b506101fd610a3c565b34801561032b57600080fd5b506102f66004803603606081101561034257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610a42565b34801561037b57600080fd5b506102246004803603602081101561039257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610b50565b3480156103bb57600080fd5b506102f6600480360360208110156103d257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c76565b3480156103fb57600080fd5b50610404610c97565b6040805160ff9092168252519081900360200190f35b34801561042657600080fd5b50610224610c9c565b34801561043b57600080fd5b506102f66004803603602081101561045257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d1a565b34801561047b57600080fd5b506102246004803603604081101561049257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001351515610d46565b3480156104c357600080fd5b506102f6610e10565b3480156104d857600080fd5b506101fd600480360360208110156104ef57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610e31565b34801561051857600080fd5b506102246004803603604081101561052f57600080fd5b81019060208101813564010000000081111561054a57600080fd5b82018360208201111561055c57600080fd5b8035906020019184602083028401116401000000008311171561057e57600080fd5b919350915035610e59565b34801561059557600080fd5b5061059e610ea8565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156105d357600080fd5b5061023b610ec4565b3480156105e857600080fd5b5061059e610efb565b3480156105fd57600080fd5b506102f66004803603604081101561061457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f17565b34801561064357600080fd5b506102f66004803603604081101561065a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f24565b34801561068957600080fd5b50610224600480360360208110156106a057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611042565b3480156106c957600080fd5b50610224611108565b3480156106de57600080fd5b5061059e6111ab565b3480156106f357600080fd5b506101fd6004803603604081101561070a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166111c7565b34801561073b57600080fd5b506102246004803603604081101561075257600080fd5b508035151590602001356111ff565b34801561076d57600080fd5b506102246004803603602081101561078457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112c1565b3480156107ad57600080fd5b5061059e61137c565b3480156107c257600080fd5b50610224600480360360208110156107d957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611398565b34801561080257600080fd5b506102246004803603602081101561081957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611458565b34801561084257600080fd5b5061059e61157d565b34801561085757600080fd5b506102f66004803603602081101561086e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611599565b60105481565b61089a33611599565b61090557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b600f54604080517f66d38203000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916366d382039160248082019260009290919082900301818387803b15801561097757600080fd5b505af115801561098b573d6000803e3d6000fd5b50505050565b60408051808201909152600681527f56495a4152440000000000000000000000000000000000000000000000000000602082015290565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60035490565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14610b3b57604080518082018252601681527f496e73756666696369656e7420416c6c6f77616e63650000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff87166000908152600582528381203382529091529190912054610b099184906115c4565b73ffffffffffffffffffffffffffffffffffffffff851660009081526005602090815260408083203384529091529020555b610b46848484611675565b90505b9392505050565b610b5933611599565b610bc457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b600f805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216821790553060009081526005602090815260408083209383529281528282207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9055600690522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161490565b600f90565b610ca533611599565b610d1057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b610d1861181b565b565b6000610a36827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6109c8565b610d4f33610c76565b610dba57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600f5474010000000000000000000000000000000000000000900460ff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005b8281101561098b57610e9733858584818110610e7457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1684611c8a565b610ea057600080fd5b600101610e5c565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60408051808201909152600381527f565a440000000000000000000000000000000000000000000000000000000000602082015290565b600e5473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b49338484611675565b6000610f2f33611599565b610f9a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101849052905173ffffffffffffffffffffffffffffffffffffffff85169163a9059cbb9160448083019260209291908290030181600087803b15801561100f57600080fd5b505af1158015611023573d6000803e3d6000fd5b505050506040513d602081101561103957600080fd5b50519392505050565b61104b33610c76565b6110b657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260016020819052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169091179055565b61111133610c76565b61117c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f193505050501580156111a8573d6000803e3d6000fd5b50565b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b61120833610c76565b61127357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600f805492151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff90931692909217909155601055565b6112ca33610c76565b61133557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b6113a133610c76565b61140c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b61146133610c76565b6114cc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811782558082526001602081815260409384902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016909217909155825191825291517f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc686163929181900390910190a150565b600d5473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205460ff1690565b6000818484111561166d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561163257818101518382015260200161161a565b50505050905090810190601f16801561165f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60115460009060ff16156116955761168e848484611c8a565b9050610b49565b61169d611d9b565b156116aa576116aa61181b565b604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff87166000908152600490915291909120546117129184906115c4565b73ffffffffffffffffffffffffffffffffffffffff808616600090815260046020908152604080832094909455918616815260069091529081205460ff166117795761175d85611e11565b6117675782611772565b611772858486611e3d565b905061177c565b50815b73ffffffffffffffffffffffffffffffffffffffff84166000908152600460205260409020546117ac908261203a565b73ffffffffffffffffffffffffffffffffffffffff80861660008181526004602090815260409182902094909455805185815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055306000908152600460205260408120546118619060026120ae565b306000908152600460205260408120549192509061187f90836120f0565b604080516002808252606082018352929350600092909160208301908036833701905050905030816000815181106118b357fe5b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526002548251911690829060019081106118eb57fe5b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600d546040517f791ac94700000000000000000000000000000000000000000000000000000000815260048101868152600060248301819052306064840181905261016842016084850181905260a060448601908152895160a487015289514799979097169763791ac947978c9795968c9690939260c49091019187820191028083838b5b838110156119af578181015183820152602001611997565b505050509050019650505050505050600060405180830381600087803b1580156119d857600080fd5b505af11580156119ec573d6000803e3d6000fd5b505050506000611a0582476120f090919063ffffffff16565b90506000611a2b611a2260026007546120ae90919063ffffffff16565b600954906120f0565b90506000611a536002611a4d84611a4d6007548861213290919063ffffffff16565b906120ae565b90506000611a7083611a4d6008548761213290919063ffffffff16565b600c5460405191925060009173ffffffffffffffffffffffffffffffffffffffff9091169061753090849084818181858888f193505050503d8060008114611ad4576040519150601f19603f3d011682016040523d82523d6000602084013e611ad9565b606091505b5050905080611b4957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4661696c656420746f2073656e64204574686572000000000000000000000000604482015290519081900360640190fd5b8815611c5757600d54600b54604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018d9052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff9283166084820152610168420160a48201529051919092169163f305d71991869160c48082019260609290919082900301818588803b158015611bee57600080fd5b505af1158015611c02573d6000803e3d6000fd5b50505050506040513d6060811015611c1957600080fd5b505060408051868152602081018b905281517f424db2872186fa7e7afa7a5e902ed3b49a2ef19c2f5431e672462495dd6b4506929181900390910190a15b5050601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550505050505050565b604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff86166000908152600490915291822054611cf19184906115c4565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600460205260408082209390935590851681522054611d2d908361203a565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526004602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b600e5460009073ffffffffffffffffffffffffffffffffffffffff163314801590611dc9575060115460ff16155b8015611def5750600f5474010000000000000000000000000000000000000000900460ff165b8015611e0c57506010543060009081526004602052604090205410155b905090565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205460ff161590565b600f54604080517fd61942990000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff86811660248301528481166044830152336064830152825160009485948594939091169263d6194299926084808301939282900301818787803b158015611ec957600080fd5b505af1158015611edd573d6000803e3d6000fd5b505050506040513d6040811015611ef357600080fd5b508051602090910151909250905080611f875730600090815260046020526040902054611f20908361203a565b306000818152600460209081526040918290209390935580518581529051919273ffffffffffffffffffffffffffffffffffffffff8a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3612026565b600f5473ffffffffffffffffffffffffffffffffffffffff16600090815260046020526040902054611fb9908361203a565b600f805473ffffffffffffffffffffffffffffffffffffffff9081166000908152600460209081526040918290209490945591548251868152925190821693918a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35b61203085836120f0565b9695505050505050565b600082820183811015610b4957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610b4983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121a5565b6000610b4983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115c4565b60008261214157506000610a36565b8282028284828161214e57fe5b0414610b49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122256021913960400191505060405180910390fd5b6000818361220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181815283516024840152835190928392604490910191908501908083836000831561163257818101518382015260200161161a565b50600083858161221a57fe5b049594505050505056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220482c93dbda45ef44fc1b8e9cabca1b588fdb3555f3bd1457be4d7c4e84125c9164736f6c63430007060033
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c8063893d20e811610102578063dd62ed3e11610095578063f0b37c0411610064578063f0b37c04146107b6578063f2fde38b146107f6578063f887ea4014610836578063fe9fbb801461084b576101e3565b8063dd62ed3e146106e7578063df20fd491461072f578063e01bb68814610761578063e96fada2146107a1576101e3565b8063b29a8140116100d1578063b29a814014610637578063b6a5d7de1461067d578063bcdb446b146106bd578063ca33e64c146106d2576101e3565b8063893d20e81461058957806395d89b41146105c7578063a8aa1b31146105dc578063a9059cbb146105f1576101e3565b80632f54bf6e1161017a578063658d4b7f11610149578063658d4b7f1461046f5780636ddd1713146104b757806370a08231146104cc578063806e085e1461050c576101e3565b80632f54bf6e146103af578063313ce567146103ef57806351bc3c851461041a578063571ac8b01461042f576101e3565b8063095ea7b3116101b6578063095ea7b3146102b057806318160ddd1461030a57806323b872dd1461031f5780632de322271461036f576101e3565b80630445b667146101e8578063052a04b31461020f57806306fdde0314610226576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61088b565b60408051918252519081900360200190f35b34801561021b57600080fd5b50610224610891565b005b34801561023257600080fd5b5061023b610991565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027557818101518382015260200161025d565b50505050905090810190601f1680156102a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102bc57600080fd5b506102f6600480360360408110156102d357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109c8565b604080519115158252519081900360200190f35b34801561031657600080fd5b506101fd610a3c565b34801561032b57600080fd5b506102f66004803603606081101561034257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610a42565b34801561037b57600080fd5b506102246004803603602081101561039257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610b50565b3480156103bb57600080fd5b506102f6600480360360208110156103d257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c76565b3480156103fb57600080fd5b50610404610c97565b6040805160ff9092168252519081900360200190f35b34801561042657600080fd5b50610224610c9c565b34801561043b57600080fd5b506102f66004803603602081101561045257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d1a565b34801561047b57600080fd5b506102246004803603604081101561049257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001351515610d46565b3480156104c357600080fd5b506102f6610e10565b3480156104d857600080fd5b506101fd600480360360208110156104ef57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610e31565b34801561051857600080fd5b506102246004803603604081101561052f57600080fd5b81019060208101813564010000000081111561054a57600080fd5b82018360208201111561055c57600080fd5b8035906020019184602083028401116401000000008311171561057e57600080fd5b919350915035610e59565b34801561059557600080fd5b5061059e610ea8565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156105d357600080fd5b5061023b610ec4565b3480156105e857600080fd5b5061059e610efb565b3480156105fd57600080fd5b506102f66004803603604081101561061457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f17565b34801561064357600080fd5b506102f66004803603604081101561065a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f24565b34801561068957600080fd5b50610224600480360360208110156106a057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611042565b3480156106c957600080fd5b50610224611108565b3480156106de57600080fd5b5061059e6111ab565b3480156106f357600080fd5b506101fd6004803603604081101561070a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166111c7565b34801561073b57600080fd5b506102246004803603604081101561075257600080fd5b508035151590602001356111ff565b34801561076d57600080fd5b506102246004803603602081101561078457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112c1565b3480156107ad57600080fd5b5061059e61137c565b3480156107c257600080fd5b50610224600480360360208110156107d957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611398565b34801561080257600080fd5b506102246004803603602081101561081957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611458565b34801561084257600080fd5b5061059e61157d565b34801561085757600080fd5b506102f66004803603602081101561086e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611599565b60105481565b61089a33611599565b61090557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b600f54604080517f66d38203000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916366d382039160248082019260009290919082900301818387803b15801561097757600080fd5b505af115801561098b573d6000803e3d6000fd5b50505050565b60408051808201909152600681527f56495a4152440000000000000000000000000000000000000000000000000000602082015290565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60035490565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14610b3b57604080518082018252601681527f496e73756666696369656e7420416c6c6f77616e63650000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff87166000908152600582528381203382529091529190912054610b099184906115c4565b73ffffffffffffffffffffffffffffffffffffffff851660009081526005602090815260408083203384529091529020555b610b46848484611675565b90505b9392505050565b610b5933611599565b610bc457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b600f805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216821790553060009081526005602090815260408083209383529281528282207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9055600690522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161490565b600f90565b610ca533611599565b610d1057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b610d1861181b565b565b6000610a36827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6109c8565b610d4f33610c76565b610dba57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600f5474010000000000000000000000000000000000000000900460ff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005b8281101561098b57610e9733858584818110610e7457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1684611c8a565b610ea057600080fd5b600101610e5c565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60408051808201909152600381527f565a440000000000000000000000000000000000000000000000000000000000602082015290565b600e5473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b49338484611675565b6000610f2f33611599565b610f9a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a4544000000000000000000000000000000000000000000604482015290519081900360640190fd5b604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101849052905173ffffffffffffffffffffffffffffffffffffffff85169163a9059cbb9160448083019260209291908290030181600087803b15801561100f57600080fd5b505af1158015611023573d6000803e3d6000fd5b505050506040513d602081101561103957600080fd5b50519392505050565b61104b33610c76565b6110b657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260016020819052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169091179055565b61111133610c76565b61117c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f193505050501580156111a8573d6000803e3d6000fd5b50565b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b61120833610c76565b61127357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600f805492151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff90931692909217909155601055565b6112ca33610c76565b61133557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b6113a133610c76565b61140c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b61146133610c76565b6114cc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e45520000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811782558082526001602081815260409384902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016909217909155825191825291517f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc686163929181900390910190a150565b600d5473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205460ff1690565b6000818484111561166d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561163257818101518382015260200161161a565b50505050905090810190601f16801561165f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60115460009060ff16156116955761168e848484611c8a565b9050610b49565b61169d611d9b565b156116aa576116aa61181b565b604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff87166000908152600490915291909120546117129184906115c4565b73ffffffffffffffffffffffffffffffffffffffff808616600090815260046020908152604080832094909455918616815260069091529081205460ff166117795761175d85611e11565b6117675782611772565b611772858486611e3d565b905061177c565b50815b73ffffffffffffffffffffffffffffffffffffffff84166000908152600460205260409020546117ac908261203a565b73ffffffffffffffffffffffffffffffffffffffff80861660008181526004602090815260409182902094909455805185815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055306000908152600460205260408120546118619060026120ae565b306000908152600460205260408120549192509061187f90836120f0565b604080516002808252606082018352929350600092909160208301908036833701905050905030816000815181106118b357fe5b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526002548251911690829060019081106118eb57fe5b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600d546040517f791ac94700000000000000000000000000000000000000000000000000000000815260048101868152600060248301819052306064840181905261016842016084850181905260a060448601908152895160a487015289514799979097169763791ac947978c9795968c9690939260c49091019187820191028083838b5b838110156119af578181015183820152602001611997565b505050509050019650505050505050600060405180830381600087803b1580156119d857600080fd5b505af11580156119ec573d6000803e3d6000fd5b505050506000611a0582476120f090919063ffffffff16565b90506000611a2b611a2260026007546120ae90919063ffffffff16565b600954906120f0565b90506000611a536002611a4d84611a4d6007548861213290919063ffffffff16565b906120ae565b90506000611a7083611a4d6008548761213290919063ffffffff16565b600c5460405191925060009173ffffffffffffffffffffffffffffffffffffffff9091169061753090849084818181858888f193505050503d8060008114611ad4576040519150601f19603f3d011682016040523d82523d6000602084013e611ad9565b606091505b5050905080611b4957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4661696c656420746f2073656e64204574686572000000000000000000000000604482015290519081900360640190fd5b8815611c5757600d54600b54604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018d9052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff9283166084820152610168420160a48201529051919092169163f305d71991869160c48082019260609290919082900301818588803b158015611bee57600080fd5b505af1158015611c02573d6000803e3d6000fd5b50505050506040513d6060811015611c1957600080fd5b505060408051868152602081018b905281517f424db2872186fa7e7afa7a5e902ed3b49a2ef19c2f5431e672462495dd6b4506929181900390910190a15b5050601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550505050505050565b604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff86166000908152600490915291822054611cf19184906115c4565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600460205260408082209390935590851681522054611d2d908361203a565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526004602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b600e5460009073ffffffffffffffffffffffffffffffffffffffff163314801590611dc9575060115460ff16155b8015611def5750600f5474010000000000000000000000000000000000000000900460ff165b8015611e0c57506010543060009081526004602052604090205410155b905090565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205460ff161590565b600f54604080517fd61942990000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff86811660248301528481166044830152336064830152825160009485948594939091169263d6194299926084808301939282900301818787803b158015611ec957600080fd5b505af1158015611edd573d6000803e3d6000fd5b505050506040513d6040811015611ef357600080fd5b508051602090910151909250905080611f875730600090815260046020526040902054611f20908361203a565b306000818152600460209081526040918290209390935580518581529051919273ffffffffffffffffffffffffffffffffffffffff8a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3612026565b600f5473ffffffffffffffffffffffffffffffffffffffff16600090815260046020526040902054611fb9908361203a565b600f805473ffffffffffffffffffffffffffffffffffffffff9081166000908152600460209081526040918290209490945591548251868152925190821693918a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35b61203085836120f0565b9695505050505050565b600082820183811015610b4957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610b4983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121a5565b6000610b4983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115c4565b60008261214157506000610a36565b8282028284828161214e57fe5b0414610b49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122256021913960400191505060405180910390fd5b6000818361220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181815283516024840152835190928392604490910191908501908083836000831561163257818101518382015260200161161a565b50600083858161221a57fe5b049594505050505056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220482c93dbda45ef44fc1b8e9cabca1b588fdb3555f3bd1457be4d7c4e84125c9164736f6c63430007060033
Deployed Bytecode Sourcemap
6353:7801:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7172:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13916:85;;;;;;;;;;;;;:::i;:::-;;8122:80;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8544:216;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8544:216:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7852:88;;;;;;;;;;;;;:::i;9056:364::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9056:364:0;;;;;;;;;;;;;;;;;;:::i;13701:207::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13701:207:0;;;;:::i;2136:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2136:103:0;;;;:::i;7946:80::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14009:70;;;;;;;;;;;;;:::i;8768:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8768:116:0;;;;:::i;13258:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13258:119:0;;;;;;;;;;;:::i;7133:30::-;;;;;;;;;;;;;:::i;8292:105::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8292:105:0;;;;:::i;10447:226::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10447:226:0;-1:-1:-1;10447:226:0;;:::i;8208:78::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8032:84;;;;;;;;;;;;;:::i;7081:19::-;;;;;;;;;;;;;:::i;8892:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8892:156:0;;;;;;;;;:::i;11669:164::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11669:164:0;;;;;;;;;:::i;1809:94::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1809:94:0;;;;:::i;11548:113::-;;;;;;;;;;;;;:::i;6963:36::-;;;;;;;;;;;;;:::i;8403:133::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8403:133:0;;;;;;;;;;;:::i;13538:155::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13538:155:0;;;;;;;;;:::i;13385:141::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13385:141:0;;;;:::i;7006:35::-;;;;;;;;;;;;;:::i;1979:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1979:97:0;;;;:::i;2536:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2536:173:0;;;;:::i;7050:24::-;;;;;;;;;;;;;:::i;2310:107::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2310:107:0;;;;:::i;7172:51::-;;;;:::o;13916:85::-;1694:24;1707:10;1694:12;:24::i;:::-;1686:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13968:7:::1;::::0;:28:::1;::::0;;;;;13990:4:::1;13968:28;::::0;::::1;::::0;;;:7:::1;::::0;;::::1;::::0;:13:::1;::::0;:28;;;;;:7:::1;::::0;:28;;;;;;;;:7;;:28;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;13916:85::o:0;8122:80::-;8194:5;;;;;;;;;;;;;;;;;8122:80;:::o;8544:216::-;8648:10;8619:4;8636:23;;;:11;:23;;;;;;;;;:32;;;;;;;;;;;:41;;;8693:37;;;;;;;8619:4;;8636:32;;8648:10;;8693:37;;;;;;;;-1:-1:-1;8748:4:0;8544:216;;;;;:::o;7852:88::-;7925:12;;7852:88;:::o;9056:364::-;9176:19;;;9156:4;9176:19;;;:11;:19;;;;;;;;9196:10;9176:31;;;;;;;;9219:2;9176:46;9173:180;;9272:69;;;;;;;;;;;;;;;;;;;;:19;;;-1:-1:-1;9272:19:0;;;:11;:19;;;;;9292:10;9272:31;;;;;;;;;;:69;;9308:6;;9272:35;:69::i;:::-;9238:19;;;;;;;:11;:19;;;;;;;;9258:10;9238:31;;;;;;;:103;9173:180;9372:40;9386:6;9394:9;9405:6;9372:13;:40::i;:::-;9365:47;;9056:364;;;;;;:::o;13701:207::-;1694:24;1707:10;1694:12;:24::i;:::-;1686:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13763:7:::1;:31:::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;13825:4:::1;13763:7;13805:26:::0;;;:11:::1;:26;::::0;;;;;;;:45;;;;;;;;;13861:2:::1;13805:59:::0;;13875:11:::1;:21:::0;;;:28;;;::::1;13763:31:::0;13875:28:::1;::::0;;13701:207::o;2136:103::-;2191:4;2226:5;;;;;2215:16;;;;2136:103::o;7946:80::-;6595:2;7946:80;:::o;14009:70::-;1694:24;1707:10;1694:12;:24::i;:::-;1686:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14061:10:::1;:8;:10::i;:::-;14009:70::o:0;8768:116::-;8823:4;8847:29;8855:7;8872:2;8847:7;:29::i;13258:119::-;1525:19;1533:10;1525:7;:19::i;:::-;1517:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13341:19:::1;::::0;;;::::1;;::::0;;;:11:::1;:19;::::0;;;;:28;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;13258:119::o;7133:30::-;;;;;;;;;:::o;8292:105::-;8376:18;;8358:7;8376:18;;;:9;:18;;;;;;;8292:105::o;10447:226::-;10539:9;10534:132;10554:21;;;10534:132;;;10605:48;10620:10;10631;;10642:1;10631:13;;;;;;;;;;;;;;;10646:6;10605:14;:48::i;:::-;10597:57;;;;;;10577:3;;10534:132;;8208:78;8260:7;8278:5;;;8208:78;:::o;8032:84::-;8106:7;;;;;;;;;;;;;;;;;8032:84;:::o;7081:19::-;;;;;;:::o;8892:156::-;8972:4;8996:44;9010:10;9022:9;9033:6;8996:13;:44::i;11669:164::-;11752:10;1694:24;1707:10;1694:12;:24::i;:::-;1686:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11782:43:::1;::::0;;;;;11806:10:::1;11782:43;::::0;::::1;::::0;;;;;;;;;:23:::1;::::0;::::1;::::0;::::1;::::0;:43;;;;;::::1;::::0;;;;;;;;-1:-1:-1;11782:23:0;:43;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;11782:43:0;;11669:164;-1:-1:-1;;;11669:164:0:o;1809:94::-;1525:19;1533:10;1525:7;:19::i;:::-;1517:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1869:19:::1;;;::::0;;;1891:4:::1;1869:19;::::0;;;;;;;:26;;;::::1;::::0;;::::1;::::0;;1809:94::o;11548:113::-;1525:19;1533:10;1525:7;:19::i;:::-;1517:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11602:51:::1;::::0;11610:10:::1;::::0;11631:21:::1;11602:51:::0;::::1;;;::::0;::::1;::::0;;;11631:21;11610:10;11602:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;11548:113::o:0;6963:36::-;;;;;;:::o;8403:133::-;8505:19;;;;8487:7;8505:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;8403:133::o;13538:155::-;1525:19;1533:10;1525:7;:19::i;:::-;1517:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13629:11:::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;13662:13:::1;:23:::0;13538:155::o;13385:141::-;1525:19;1533:10;1525:7;:19::i;:::-;1517:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13472:21:::1;:46:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;13385:141::o;7006:35::-;;;;;;:::o;1979:97::-;1525:19;1533:10;1525:7;:19::i;:::-;1517:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2041:19:::1;;2063:5;2041:19:::0;;;:14:::1;:19;::::0;;;;:27;;;::::1;::::0;;1979:97::o;2536:173::-;1525:19;1533:10;1525:7;:19::i;:::-;1517:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2612:5:::1;:11:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;2634:19;;;-1:-1:-1;2634:19:0::1;::::0;;;;;;;;:26;;;::::1;::::0;;::::1;::::0;;;2676:25;;;;;;;::::1;::::0;;;;;;;;;::::1;2536:173:::0;:::o;7050:24::-;;;;;;:::o;2310:107::-;2390:19;;2366:4;2390:19;;;:14;:19;;;;;;;;;2310:107::o;3119:192::-;3205:7;3241:12;3233:6;;;;3225:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3277:5:0;;;3119:192::o;9428:665::-;9540:6;;9520:4;;9540:6;;9537:63;;;9556:41;9571:6;9579:9;9590:6;9556:14;:41::i;:::-;9549:48;;;;9537:63;9623:16;:14;:16::i;:::-;9620:35;;;9642:10;:8;:10::i;:::-;9687:53;;;;;;;;;;;;;;;;;;;;:17;;;-1:-1:-1;9687:17:0;;;:9;:17;;;;;;;;:53;;9709:6;;9687:21;:53::i;:::-;9667:17;;;;;;;;:9;:17;;;;;;;;:73;;;;9790:22;;;;;:11;:22;;;;;;;;;9786:143;;9830:21;9844:6;9830:13;:21::i;:::-;:67;;9891:6;9830:67;;;9854:34;9862:6;9870;9878:9;9854:7;:34::i;:::-;9814:83;;9786:143;;;-1:-1:-1;9921:6:0;9786:143;9962:20;;;;;;;:9;:20;;;;;;:40;;9987:14;9962:24;:40::i;:::-;9939:20;;;;;;;;:9;:20;;;;;;;;;:63;;;;10020:43;;;;;;;9939:20;;10020:43;;;;;;;;;;;;;-1:-1:-1;10081:4:0;;9428:665;-1:-1:-1;;;;9428:665:0:o;11845:1401::-;7280:6;:13;;;;7289:4;7280:13;;;11938:4:::1;7280:6:::0;11920:24;;;:9:::1;:24;::::0;;;;;:31:::1;::::0;11949:1:::1;11920:28;:31::i;:::-;12003:4;11962:20;11985:24:::0;;;:9:::1;:24;::::0;;;;;11894:57;;-1:-1:-1;11962:20:0;11985:45:::1;::::0;11894:57;11985:28:::1;:45::i;:::-;12067:16;::::0;;12081:1:::1;12067:16:::0;;;;;::::1;::::0;;11962:68;;-1:-1:-1;12043:21:0::1;::::0;12067:16;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;12067:16:0::1;12043:40;;12112:4;12094;12099:1;12094:7;;;;;;;;:23;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;12138:4:::1;::::0;12128:7;;12138:4;::::1;::::0;12128;;12138;;12128:7;::::1;;;;;:14;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;;:14;;;;12213:6:::1;::::0;:192:::1;::::0;;;;::::1;::::0;::::1;::::0;;;12155:21:::1;12213:192:::0;;;;;;12355:4:::1;12213:192:::0;;;;;;12391:3:::1;12375:15;:19;12213:192:::0;;;;;;;;;;;;;;;;;;;;;12179:21:::1;::::0;12213:6;;;::::1;::::0;:57:::1;::::0;12285:12;;12155:21;;12328:4;;12213:192;;;;;;;;;;::::1;::::0;::::1;::::0;;;12155:21;12213:192:::1;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;12418:17;12438:40;12464:13;12438:21;:25;;:40;;;;:::i;:::-;12418:60;;12489:19;12511:33;12524:19;12541:1;12524:12;;:16;;:19;;;;:::i;:::-;12511:8;::::0;;:12:::1;:33::i;:::-;12489:55;;12555:26;12584:51;12633:1;12584:44;12616:11;12584:27;12598:12;;12584:9;:13;;:27;;;;:::i;:::-;:31:::0;::::1;:44::i;:51::-;12555:80;;12646:26;12675:44;12707:11;12675:27;12689:12;;12675:9;:13;;:27;;;;:::i;:44::-;12754:20;::::0;12746:77:::1;::::0;12646:73;;-1:-1:-1;12731:9:0::1;::::0;12754:20:::1;::::0;;::::1;::::0;12813:5:::1;::::0;12646:73;;12731:9;12746:77;12731:9;12746:77;12646:73;12754:20;12813:5;12746:77:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12730:93;;;12842:4;12834:37;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;12885:19:::0;;12882:357:::1;;12920:6;::::0;13094:21:::1;::::0;12920:248:::1;::::0;;;;;12996:4:::1;12920:248;::::0;::::1;::::0;;;;;;;:6:::1;:248:::0;;;;;;;;;;:6:::1;13094:21:::0;;::::1;12920:248:::0;;;;13150:3:::1;13134:15;:19;12920:248:::0;;;;;;:6;;;::::1;::::0;:22:::1;::::0;12950:18;;12920:248;;;;;::::1;::::0;;;;;;;;;12950:18;12920:6;:248;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;12920:248:0;13188:39;;;;;12920:248:::1;13188:39:::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;12882:357;-1:-1:-1::0;;7298:6:0;:14;;;;;;-1:-1:-1;;;;;;;11845:1401:0:o;10105:330::-;10235:53;;;;;;;;;;;;;;;;;;;;:17;;;10198:4;10235:17;;;:9;:17;;;;;;;:53;;10257:6;;10235:21;:53::i;:::-;10215:17;;;;;;;;:9;:17;;;;;;:73;;;;10322:20;;;;;;;:32;;10347:6;10322:24;:32::i;:::-;10299:20;;;;;;;;:9;:20;;;;;;;;;:55;;;;10370:35;;;;;;;10299:20;;10370:35;;;;;;;;;;;;;-1:-1:-1;10423:4:0;10105:330;;;;;:::o;11345:197::-;11432:4;;11394;;11432;;11418:10;:18;;;;:38;;-1:-1:-1;11450:6:0;;;;11449:7;11418:38;:62;;;;-1:-1:-1;11469:11:0;;;;;;;11418:62;:116;;;;-1:-1:-1;11521:13:0;;11511:4;11493:24;;;;:9;:24;;;;;;:41;;11418:116;11411:123;;11345:197;:::o;10685:113::-;10771:19;;10747:4;10771:19;;;:11;:19;;;;;;;;10770:20;;10685:113::o;10806:531::-;10942:7;;:54;;;;;;;;;;;;:7;:54;;;;;;;;;;;;;;10985:10;10942:54;;;;;;10890:7;;;;;;10942;;;;;:19;;:54;;;;;;;;;;;10890:7;10942;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10942:54:0;;;;;;;;;-1:-1:-1;10942:54:0;-1:-1:-1;10942:54:0;11007:284;;11067:4;11049:24;;;;:9;:24;;;;;;:39;;11078:9;11049:28;:39::i;:::-;11040:4;11022:24;;;;:9;:24;;;;;;;;;:66;;;;11104:42;;;;;;;11040:4;;11022:24;11104:42;;;;;;;;;;;;;11007:284;;;11204:7;;;;11186:27;;;;:9;:27;;;;;;:42;;11218:9;11186:31;:42::i;:::-;11174:7;;;;;;;11156:27;;;;:9;:27;;;;;;;;;:72;;;;11269:7;;11244:45;;;;;;;11269:7;;;;11244:45;;;;;;;;;;;;;11007:284;11308:21;:6;11319:9;11308:10;:21::i;:::-;11301:28;10806:531;-1:-1:-1;;;;;;10806:531:0:o;2790:181::-;2848:7;2880:5;;;2904:6;;;;2896:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3573:132;3631:7;3658:39;3662:1;3665;3658:39;;;;;;;;;;;;;;;;;:3;:39::i;2977:136::-;3035:7;3062:43;3066:1;3069;3062:43;;;;;;;;;;;;;;;;;:3;:43::i;3317:250::-;3375:7;3399:6;3395:47;;-1:-1:-1;3429:1:0;3422:8;;3395:47;3466:5;;;3470:1;3466;:5;:1;3490:5;;;;;:10;3482:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3711:345;3797:7;3899:12;3892:5;3884:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3923:9;3939:1;3935;:5;;;;;;;3711:345;-1:-1:-1;;;;;3711:345:0:o
Swarm Source
ipfs://482c93dbda45ef44fc1b8e9cabca1b588fdb3555f3bd1457be4d7c4e84125c91
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.